ProcessContext.cs 538 B

12345678910111213141516171819202122232425
  1. using ARMeilleure.State;
  2. using Ryujinx.Memory;
  3. using System;
  4. namespace Ryujinx.HLE.HOS.Kernel.Process
  5. {
  6. class ProcessContext : IProcessContext
  7. {
  8. public IVirtualMemoryManager AddressSpace { get; }
  9. public ProcessContext(IVirtualMemoryManager asManager)
  10. {
  11. AddressSpace = asManager;
  12. }
  13. public void Execute(ExecutionContext context, ulong codeAddress)
  14. {
  15. throw new NotSupportedException();
  16. }
  17. public void Dispose()
  18. {
  19. }
  20. }
  21. }