IProcessContext.cs 433 B

123456789101112131415
  1. using Ryujinx.Cpu;
  2. using Ryujinx.Memory;
  3. using System;
  4. namespace Ryujinx.HLE.HOS.Kernel.Process
  5. {
  6. interface IProcessContext : IDisposable
  7. {
  8. IVirtualMemoryManager AddressSpace { get; }
  9. IExecutionContext CreateExecutionContext(ExceptionCallbacks exceptionCallbacks);
  10. void Execute(IExecutionContext context, ulong codeAddress);
  11. void InvalidateCacheRegion(ulong address, ulong size);
  12. }
  13. }