Ryujinx/Ryujinx.HLE/Debugger/IDebuggableProcess.cs

13 lines
379 B
C#
Raw Normal View History

using Ryujinx.Memory;
namespace Ryujinx.HLE.Debugger
{
public interface IDebuggableProcess
{
2022-02-13 14:21:23 +00:00
void DebugStopAllThreads();
long[] DebugGetThreadUids();
ARMeilleure.State.ExecutionContext DebugGetThreadContext(long threadUid);
IVirtualMemoryManager CpuMemory { get; }
void InvalidateCacheRegion(ulong address, ulong size);
}
2022-02-13 14:21:23 +00:00
}