mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-25 05:02:22 -05:00
Move solution and projects to src
This commit is contained in:
15
src/Ryujinx.HLE/HOS/Kernel/Process/IProcessContext.cs
Normal file
15
src/Ryujinx.HLE/HOS/Kernel/Process/IProcessContext.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user