mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-07-28 09:27:10 +02:00
15 lines
433 B
C#
15 lines
433 B
C#
using Ryujinx.Cpu;
|
|
using Ryujinx.Memory;
|
|
using System;
|
|
|
|
namespace Ryujinx.HLE.HOS.Kernel.Process
|
|
{
|
|
interface IProcessContext : IDisposable
|
|
{
|
|
IVirtualMemoryManager AddressSpace { get; }
|
|
|
|
IExecutionContext CreateExecutionContext(ExceptionCallbacks exceptionCallbacks);
|
|
void Execute(IExecutionContext context, ulong codeAddress);
|
|
void InvalidateCacheRegion(ulong address, ulong size);
|
|
}
|
|
}
|