ProcessContext.cs 628 B

1234567891011121314151617181920212223242526272829
  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 InvalidateCacheRegion(ulong address, ulong size)
  18. {
  19. }
  20. public void Dispose()
  21. {
  22. }
  23. }
  24. }