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