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/DramMemoryMap.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/DramMemoryMap.cs')
| -rw-r--r-- | Ryujinx.HLE/HOS/Kernel/Memory/DramMemoryMap.cs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Ryujinx.HLE/HOS/Kernel/Memory/DramMemoryMap.cs b/Ryujinx.HLE/HOS/Kernel/Memory/DramMemoryMap.cs index 261c2972..dea2a4ef 100644 --- a/Ryujinx.HLE/HOS/Kernel/Memory/DramMemoryMap.cs +++ b/Ryujinx.HLE/HOS/Kernel/Memory/DramMemoryMap.cs @@ -3,8 +3,6 @@ namespace Ryujinx.HLE.HOS.Kernel.Memory static class DramMemoryMap { public const ulong DramBase = 0x80000000; - public const ulong DramSize = 0x100000000; - public const ulong DramEnd = DramBase + DramSize; public const ulong KernelReserveBase = DramBase + 0x60000; |
