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
a27986c311
commit
ff8849671a
15 changed files with 156 additions and 66 deletions
|
@ -20,6 +20,16 @@ namespace Ryujinx.HLE.HOS.Tamper
|
|||
/// <summary>
|
||||
/// The address of the heap, as determined by the kernel.
|
||||
/// </summary>
|
||||
Heap = 0x1
|
||||
Heap = 0x1,
|
||||
|
||||
/// <summary>
|
||||
/// The address of the alias region, as determined by the kernel.
|
||||
/// </summary>
|
||||
Alias = 0x2,
|
||||
|
||||
/// <summary>
|
||||
/// The address of the code region with address space layout randomization included.
|
||||
/// </summary>
|
||||
Asrl = 0x3,
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue