blob: 758ac6b10b4dc4ea7f097e9424080889be8c0664 (
plain)
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);
}
}
|