mirror of
https://git.zaroz.cloud/nintendo-back-up/Ryujinx.git
synced 2025-07-28 09:31:56 +00:00
11 lines
328 B
C#
11 lines
328 B
C#
namespace Ryujinx.Core.OsHle
|
|
{
|
|
static class MemoryRegions
|
|
{
|
|
public const long MapRegionAddress = 0x80000000;
|
|
public const long MapRegionSize = 0x40000000;
|
|
|
|
public const long HeapRegionAddress = MapRegionAddress + MapRegionSize;
|
|
public const long HeapRegionSize = 0x40000000;
|
|
}
|
|
} |