summaryrefslogtreecommitdiffstats
path: root/src/core/mem_map.cpp
diff options
context:
space:
mode:
authorbunnei <ericbunnie@gmail.com>2014-04-18 03:15:40 +0200
committerbunnei <ericbunnie@gmail.com>2014-04-18 03:15:40 +0200
commita9dba388eba586691724187fe53b385cc0bf23aa (patch)
treecdd718342fba54e3345d111e14150a2461d795a7 /src/core/mem_map.cpp
parentmore various refactors to memory interface (diff)
downloadyuzu-a9dba388eba586691724187fe53b385cc0bf23aa.tar
yuzu-a9dba388eba586691724187fe53b385cc0bf23aa.tar.gz
yuzu-a9dba388eba586691724187fe53b385cc0bf23aa.tar.bz2
yuzu-a9dba388eba586691724187fe53b385cc0bf23aa.tar.lz
yuzu-a9dba388eba586691724187fe53b385cc0bf23aa.tar.xz
yuzu-a9dba388eba586691724187fe53b385cc0bf23aa.tar.zst
yuzu-a9dba388eba586691724187fe53b385cc0bf23aa.zip
Diffstat (limited to '')
-rw-r--r--src/core/mem_map.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/core/mem_map.cpp b/src/core/mem_map.cpp
index 44b4b07b7..180829239 100644
--- a/src/core/mem_map.cpp
+++ b/src/core/mem_map.cpp
@@ -16,9 +16,8 @@ u8* g_base = NULL; ///< The base pointer to the aut
MemArena g_arena; ///< The MemArena class
-u8* g_bootrom = NULL; ///< Bootrom physical memory
-u8* g_heap_gsp = NULL;
-u8* g_heap = NULL;
+u8* g_heap_gsp = NULL; ///< GSP heap (main memory)
+u8* g_heap = NULL; ///< Application heap (main memory)
u8* g_vram = NULL; ///< Video memory (VRAM) pointer
u8* g_physical_bootrom = NULL; ///< Bootrom physical memory