mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-07-28 17:37:11 +02:00
Update TamperMachine and disable write-to-code prevention (#2506)
* Enable write to memory and improve logging * Update tamper machine opcodes and improve reporting * Add Else support * Add missing private statement
This commit is contained in:
parent
33a447f22e
commit
65c4566537
15 changed files with 156 additions and 66 deletions
|
@ -5,6 +5,9 @@ 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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue