2020-12-01 23:23:43 +00:00
|
|
|
|
using ARMeilleure.State;
|
|
|
|
|
using Ryujinx.Memory;
|
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace Ryujinx.HLE.HOS.Kernel.Process
|
|
|
|
|
{
|
|
|
|
|
class ProcessContext : IProcessContext
|
|
|
|
|
{
|
|
|
|
|
public IVirtualMemoryManager AddressSpace { get; }
|
|
|
|
|
|
|
|
|
|
public ProcessContext(IVirtualMemoryManager asManager)
|
|
|
|
|
{
|
|
|
|
|
AddressSpace = asManager;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Execute(ExecutionContext context, ulong codeAddress)
|
|
|
|
|
{
|
|
|
|
|
throw new NotSupportedException();
|
|
|
|
|
}
|
|
|
|
|
|
2022-02-18 01:53:18 +00:00
|
|
|
|
public void InvalidateCacheRegion(ulong address, ulong size)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-01 23:23:43 +00:00
|
|
|
|
public void Dispose()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|