summaryrefslogtreecommitdiff
path: root/src/core/memory.h
diff options
context:
space:
mode:
authorGravatar bunnei2017-12-28 21:38:38 -0500
committerGravatar bunnei2017-12-28 21:38:38 -0500
commit6e021f22b8c61654aa1e72ceef16202a11d42016 (patch)
tree965a3c330f88ed6724c5315abb8e673d5af58b38 /src/core/memory.h
parentprocess: Add method to mirror a memory region. (diff)
downloadyuzu-6e021f22b8c61654aa1e72ceef16202a11d42016.tar.gz
yuzu-6e021f22b8c61654aa1e72ceef16202a11d42016.tar.xz
yuzu-6e021f22b8c61654aa1e72ceef16202a11d42016.zip
svc: Implement MapMemory.
Diffstat (limited to 'src/core/memory.h')
-rw-r--r--src/core/memory.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/memory.h b/src/core/memory.h
index 8c60f1dd3..71ba487fc 100644
--- a/src/core/memory.h
+++ b/src/core/memory.h
@@ -136,7 +136,7 @@ enum : VAddr {
136 136
137 /// Application heap (includes stack). 137 /// Application heap (includes stack).
138 HEAP_VADDR = 0x108000000, 138 HEAP_VADDR = 0x108000000,
139 HEAP_SIZE = 0x08000000, 139 HEAP_SIZE = 0x18000000,
140 HEAP_VADDR_END = HEAP_VADDR + HEAP_SIZE, 140 HEAP_VADDR_END = HEAP_VADDR + HEAP_SIZE,
141 141
142 /// Area where shared memory buffers are mapped onto. 142 /// Area where shared memory buffers are mapped onto.