summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel
diff options
context:
space:
mode:
authorRodrigo Locatti <reinuseslisp@airmail.cc>2020-04-24 02:47:24 +0200
committerGitHub <noreply@github.com>2020-04-24 02:47:24 +0200
commitdb3dcb2f6477cd633a454fbd8db8df4b67213b8e (patch)
treed1f2717cc268b3f5be66dad2a9c8363fb38e40d2 /src/core/hle/kernel
parentMerge pull request #3781 from lioncash/docs (diff)
parentsvc: Remove unused variable (diff)
downloadyuzu-db3dcb2f6477cd633a454fbd8db8df4b67213b8e.tar
yuzu-db3dcb2f6477cd633a454fbd8db8df4b67213b8e.tar.gz
yuzu-db3dcb2f6477cd633a454fbd8db8df4b67213b8e.tar.bz2
yuzu-db3dcb2f6477cd633a454fbd8db8df4b67213b8e.tar.lz
yuzu-db3dcb2f6477cd633a454fbd8db8df4b67213b8e.tar.xz
yuzu-db3dcb2f6477cd633a454fbd8db8df4b67213b8e.tar.zst
yuzu-db3dcb2f6477cd633a454fbd8db8df4b67213b8e.zip
Diffstat (limited to 'src/core/hle/kernel')
-rw-r--r--src/core/hle/kernel/svc.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp
index 4134acf65..dc5bcc2e5 100644
--- a/src/core/hle/kernel/svc.cpp
+++ b/src/core/hle/kernel/svc.cpp
@@ -55,9 +55,6 @@ constexpr bool IsValidAddressRange(VAddr address, u64 size) {
return address + size > address;
}
-// 8 GiB
-constexpr u64 MAIN_MEMORY_SIZE = 0x200000000;
-
// Helper function that performs the common sanity checks for svcMapMemory
// and svcUnmapMemory. This is doable, as both functions perform their sanitizing
// in the same order.