1 2 3 4 5 6 7 8 9 10 11 12 13
using ARMeilleure.State; using Ryujinx.Memory; using System; namespace Ryujinx.HLE.HOS.Kernel.Process { interface IProcessContext : IDisposable { IVirtualMemoryManager AddressSpace { get; } void Execute(ExecutionContext context, ulong codeAddress); } }