Ryujinx/Ryujinx.HLE/Debugger/IDebuggableProcess.cs
2022-03-29 13:28:19 +01:00

13 lines
No EOL
379 B
C#

using Ryujinx.Memory;
namespace Ryujinx.HLE.Debugger
{
public interface IDebuggableProcess
{
void DebugStopAllThreads();
long[] DebugGetThreadUids();
ARMeilleure.State.ExecutionContext DebugGetThreadContext(long threadUid);
IVirtualMemoryManager CpuMemory { get; }
void InvalidateCacheRegion(ulong address, ulong size);
}
}