IProcessContext.cs 349 B

1234567891011121314
  1. using ARMeilleure.State;
  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. void Execute(ExecutionContext context, ulong codeAddress);
  10. void InvalidateCacheRegion(ulong address, ulong size);
  11. }
  12. }