92d166ecb7
* Enable CPU JIT cache invalidation * Invalidate cache on IC IVAU
29 lines
628 B
C#
29 lines
628 B
C#
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();
|
|
}
|
|
|
|
public void InvalidateCacheRegion(ulong address, ulong size)
|
|
{
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
}
|
|
}
|
|
}
|