874540bb5c
* Allow DRAM size to be increased from 4GB to 6GB * Add option on the UI
13 lines
No EOL
399 B
C#
13 lines
No EOL
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;
|
|
}
|
|
} |