ff8849671a
* Enable write to memory and improve logging * Update tamper machine opcodes and improve reporting * Add Else support * Add missing private statement
16 lines
385 B
C#
16 lines
385 B
C#
using Ryujinx.HLE.HOS.Kernel.Process;
|
|
|
|
namespace Ryujinx.HLE.HOS.Tamper
|
|
{
|
|
interface ITamperedProcess
|
|
{
|
|
ProcessState State { get; }
|
|
|
|
bool TamperedCodeMemory { get; set; }
|
|
|
|
T ReadMemory<T>(ulong va) where T : unmanaged;
|
|
void WriteMemory<T>(ulong va, T value) where T : unmanaged;
|
|
void PauseProcess();
|
|
void ResumeProcess();
|
|
}
|
|
}
|