mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-03-11 01:24:25 +00:00
13 lines
355 B
C#
13 lines
355 B
C#
![]() |
using ChocolArm64.Memory;
|
||
|
|
||
|
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;
|
||
|
}
|
||
|
}
|