diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2021-04-04 09:06:59 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-04 14:06:59 +0200 |
| commit | 874540bb5c1c5737bc9b0bfdc96fe1cf12ff164d (patch) | |
| tree | 68582881e7f4965d7e0938020a9f5dd1773f070a /Ryujinx.HLE/HOS/Kernel/Memory/KMemoryArrangeRegion.cs | |
| parent | 3bc107d491745a0d1f18e48d8c6c0f74565ae633 (diff) | |
Allow DRAM size to be increased from 4GB to 6GB (#2174)
* Allow DRAM size to be increased from 4GB to 6GB
* Add option on the UI
Diffstat (limited to 'Ryujinx.HLE/HOS/Kernel/Memory/KMemoryArrangeRegion.cs')
| -rw-r--r-- | Ryujinx.HLE/HOS/Kernel/Memory/KMemoryArrangeRegion.cs | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/Ryujinx.HLE/HOS/Kernel/Memory/KMemoryArrangeRegion.cs b/Ryujinx.HLE/HOS/Kernel/Memory/KMemoryArrangeRegion.cs deleted file mode 100644 index eaf0fe5f..00000000 --- a/Ryujinx.HLE/HOS/Kernel/Memory/KMemoryArrangeRegion.cs +++ /dev/null @@ -1,16 +0,0 @@ -namespace Ryujinx.HLE.HOS.Kernel.Memory -{ - struct KMemoryArrangeRegion - { - public ulong Address { get; private set; } - public ulong Size { get; private set; } - - public ulong EndAddr => Address + Size; - - public KMemoryArrangeRegion(ulong address, ulong size) - { - Address = address; - Size = size; - } - } -}
\ No newline at end of file |
