summaryrefslogtreecommitdiffstats
path: root/src/core/memory.h
diff options
context:
space:
mode:
authorDavid <25727384+ogniK5377@users.noreply.github.com>2018-01-17 00:27:13 +0100
committerGitHub <noreply@github.com>2018-01-17 00:27:13 +0100
commitcb8d5328d537658ce714e4f3ea9dcac5e03a8cf7 (patch)
tree01f27e2982efa3e531878453e3e560568dd27b86 /src/core/memory.h
parentSetThreadCoreMask stub, time to implement fsp (diff)
downloadyuzu-cb8d5328d537658ce714e4f3ea9dcac5e03a8cf7.tar
yuzu-cb8d5328d537658ce714e4f3ea9dcac5e03a8cf7.tar.gz
yuzu-cb8d5328d537658ce714e4f3ea9dcac5e03a8cf7.tar.bz2
yuzu-cb8d5328d537658ce714e4f3ea9dcac5e03a8cf7.tar.lz
yuzu-cb8d5328d537658ce714e4f3ea9dcac5e03a8cf7.tar.xz
yuzu-cb8d5328d537658ce714e4f3ea9dcac5e03a8cf7.tar.zst
yuzu-cb8d5328d537658ce714e4f3ea9dcac5e03a8cf7.zip
Diffstat (limited to '')
-rw-r--r--src/core/memory.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/memory.h b/src/core/memory.h
index 336d46f75..7e554f394 100644
--- a/src/core/memory.h
+++ b/src/core/memory.h
@@ -136,7 +136,7 @@ enum : VAddr {
/// Application heap (includes stack).
HEAP_VADDR = 0x108000000,
- HEAP_SIZE = 0xF0000000, // 0x18000000,
+ HEAP_SIZE = 0xF0000000,
HEAP_VADDR_END = HEAP_VADDR + HEAP_SIZE,
/// Area where shared memory buffers are mapped onto.
@@ -177,7 +177,7 @@ enum : VAddr {
SHARED_PAGE_VADDR_END = SHARED_PAGE_VADDR + SHARED_PAGE_SIZE,
/// Area where TLS (Thread-Local Storage) buffers are allocated.
- TLS_AREA_VADDR = 0x228000000, // 0x1FF82000,
+ TLS_AREA_VADDR = 0x228000000,
TLS_ENTRY_SIZE = 0x200,
/// Equivalent to LINEAR_HEAP_VADDR, but expanded to cover the extra memory in the New 3DS.