diff options
author | David Marcec <dmarcecguzman@gmail.com> | 2018-11-27 02:56:50 +0100 |
---|---|---|
committer | David Marcec <dmarcecguzman@gmail.com> | 2018-11-27 02:56:50 +0100 |
commit | cc4521fc703e39e216efd57481cb4dbc76778264 (patch) | |
tree | 322ae2f57898295e5675657ace211ecd711d705c /src/core | |
parent | Made svcSetHeapSize and svcCreateSharedMemory more readable (diff) | |
download | yuzu-cc4521fc703e39e216efd57481cb4dbc76778264.tar yuzu-cc4521fc703e39e216efd57481cb4dbc76778264.tar.gz yuzu-cc4521fc703e39e216efd57481cb4dbc76778264.tar.bz2 yuzu-cc4521fc703e39e216efd57481cb4dbc76778264.tar.lz yuzu-cc4521fc703e39e216efd57481cb4dbc76778264.tar.xz yuzu-cc4521fc703e39e216efd57481cb4dbc76778264.tar.zst yuzu-cc4521fc703e39e216efd57481cb4dbc76778264.zip |
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/hle/kernel/svc.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp index 35eee8127..b5c644ede 100644 --- a/src/core/hle/kernel/svc.cpp +++ b/src/core/hle/kernel/svc.cpp @@ -63,6 +63,7 @@ bool IsInsideNewMapRegion(const VMManager& vm, VAddr address, u64 size) { vm.GetNewMapRegionEndAddress()); } +// 8 GiB constexpr u64 MAIN_MEMORY_SIZE = 0x200000000; // Helper function that performs the common sanity checks for svcMapMemory |