aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Kernel/Process/IProcessContext.cs
blob: 707e6d9816a5be37a119922a002c6ffadd8a8cd1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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);
    }
}