2018-02-28 00:45:07 +01:00
|
|
|
using ChocolArm64.Memory;
|
|
|
|
|
2018-02-24 01:59:38 +01:00
|
|
|
namespace Ryujinx.Core.OsHle
|
|
|
|
{
|
|
|
|
static class MemoryRegions
|
|
|
|
{
|
2018-02-28 00:45:07 +01:00
|
|
|
public const long AddrSpaceStart = 0x08000000;
|
|
|
|
|
|
|
|
public const long MapRegionAddress = 0x10000000;
|
2018-03-06 21:27:50 +01:00
|
|
|
public const long MapRegionSize = 0x20000000;
|
2018-02-24 01:59:38 +01:00
|
|
|
|
2018-03-10 03:12:57 +01:00
|
|
|
public const long HeapRegionAddress = MapRegionAddress + MapRegionSize;
|
|
|
|
public const long HeapRegionSize = TlsPagesAddress - HeapRegionAddress;
|
|
|
|
|
2018-02-28 00:45:07 +01:00
|
|
|
public const long MainStackSize = 0x100000;
|
|
|
|
|
|
|
|
public const long MainStackAddress = AMemoryMgr.AddrSize - MainStackSize;
|
|
|
|
|
2018-04-06 15:53:18 +02:00
|
|
|
public const long TlsPagesSize = 0x20000;
|
2018-02-28 00:45:07 +01:00
|
|
|
|
|
|
|
public const long TlsPagesAddress = MainStackAddress - TlsPagesSize;
|
|
|
|
|
|
|
|
public const long TotalMemoryUsed = HeapRegionAddress + TlsPagesSize + MainStackSize;
|
|
|
|
|
|
|
|
public const long TotalMemoryAvailable = AMemoryMgr.RamSize - AddrSpaceStart;
|
|
|
|
|
|
|
|
public const long AddrSpaceSize = AMemoryMgr.AddrSize - AddrSpaceStart;
|
2018-02-24 01:59:38 +01:00
|
|
|
}
|
|
|
|
}
|