1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-02-20 06:08:27 -06:00
gdkchan 874540bb5c
Allow DRAM size to be increased from 4GB to 6GB ()
* Allow DRAM size to be increased from 4GB to 6GB

* Add option on the UI
2021-04-04 14:06:59 +02:00

13 lines
399 B
C#

namespace Ryujinx.HLE.HOS.Kernel.Memory
{
static class DramMemoryMap
{
public const ulong DramBase = 0x80000000;
public const ulong KernelReserveBase = DramBase + 0x60000;
public const ulong SlabHeapBase = KernelReserveBase + 0x85000;
public const ulong SlapHeapSize = 0xa21000;
public const ulong SlabHeapEnd = SlabHeapBase + SlapHeapSize;
}
}