diff options
Diffstat (limited to 'Ryujinx.HLE/HOS/Tamper/MemoryRegion.cs')
| -rw-r--r-- | Ryujinx.HLE/HOS/Tamper/MemoryRegion.cs | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/Ryujinx.HLE/HOS/Tamper/MemoryRegion.cs b/Ryujinx.HLE/HOS/Tamper/MemoryRegion.cs index 13ba6f18..fb4b25ff 100644 --- a/Ryujinx.HLE/HOS/Tamper/MemoryRegion.cs +++ b/Ryujinx.HLE/HOS/Tamper/MemoryRegion.cs @@ -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, } } |
