aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/mem_map.h
diff options
context:
space:
mode:
authorGravatar bunnei <ericbunnie@gmail.com>2014-04-29 23:16:12 -0400
committerGravatar bunnei <ericbunnie@gmail.com>2014-04-30 18:31:35 -0400
commit235dddb3f134208e30683c951158616427568af7 (patch)
tree04ad6514440466d92d3bb6805c5a0e291b5a434f /src/core/mem_map.h
parentc37390f8e26e50d0ac34687357454ff45b3690dd (diff)
added virtual memory map for ExeFS (where ARM11 code is supposed to be loaded)
Diffstat (limited to 'src/core/mem_map.h')
-rw-r--r--src/core/mem_map.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/mem_map.h b/src/core/mem_map.h
index e378f118..00c3b47f 100644
--- a/src/core/mem_map.h
+++ b/src/core/mem_map.h
@@ -105,6 +105,7 @@ extern u8* g_heap_gsp; ///< GSP heap (main memory)
extern u8* g_heap; ///< Application heap (main memory)
extern u8* g_vram; ///< Video memory (VRAM)
extern u8* g_shared_mem; ///< Shared memory
+extern u8* g_exefs_code; ///< ExeFS:/.code is loaded here
void Init();
void Shutdown();