diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2018-02-23 21:59:38 -0300 |
|---|---|---|
| committer | gdkchan <gab.dark.100@gmail.com> | 2018-02-23 21:59:38 -0300 |
| commit | 3936c934482a587635bc5a1e47962551aeb53aeb (patch) | |
| tree | 7df4ab78fe30ea27edcda9e54a32a8d132717225 /Ryujinx.Core/OsHle/Svc/SvcSystem.cs | |
| parent | 2ed733b1d5addad027f48acfdd407e64b71427fc (diff) | |
Map heap on heap base region, fix for thread start on homebrew, add FCVTMU and FCVTPU (general) instructions, fix FMOV (higher 64 bits) encodings, improve emit code for FCVT* (general) instructions
Diffstat (limited to 'Ryujinx.Core/OsHle/Svc/SvcSystem.cs')
| -rw-r--r-- | Ryujinx.Core/OsHle/Svc/SvcSystem.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Ryujinx.Core/OsHle/Svc/SvcSystem.cs b/Ryujinx.Core/OsHle/Svc/SvcSystem.cs index f33d2ac8..71edfbd6 100644 --- a/Ryujinx.Core/OsHle/Svc/SvcSystem.cs +++ b/Ryujinx.Core/OsHle/Svc/SvcSystem.cs @@ -182,22 +182,22 @@ namespace Ryujinx.Core.OsHle.Svc private ulong GetMapRegionBaseAddr() { - return 0x80000000; + return MemoryRegions.MapRegionAddress; } private ulong GetMapRegionSize() { - return 0x40000000; + return MemoryRegions.MapRegionSize; } private ulong GetHeapRegionBaseAddr() { - return GetMapRegionBaseAddr() + GetMapRegionSize(); + return MemoryRegions.HeapRegionAddress; } private ulong GetHeapRegionSize() { - return 0x40000000; + return MemoryRegions.HeapRegionSize; } private ulong GetTotalMem() |
