From 874540bb5c1c5737bc9b0bfdc96fe1cf12ff164d Mon Sep 17 00:00:00 2001 From: gdkchan Date: Sun, 4 Apr 2021 09:06:59 -0300 Subject: 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 --- Ryujinx.HLE/HOS/Kernel/Memory/DramMemoryMap.cs | 2 -- 1 file changed, 2 deletions(-) (limited to 'Ryujinx.HLE/HOS/Kernel/Memory/DramMemoryMap.cs') 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; -- cgit v1.2.3