diff options
author | bunnei <ericbunnie@gmail.com> | 2014-04-24 22:32:26 -0400 |
---|---|---|
committer | bunnei <ericbunnie@gmail.com> | 2014-04-24 22:32:26 -0400 |
commit | b7cd4c9e90be42476a2e242571d36cbbca2fbd4c (patch) | |
tree | ded61f0cc1b93a96226a849388348feca591cfa5 /src/core/mem_map.cpp | |
parent | 66e1f8ab330aca275db686290d9ece5100821c6c (diff) |
added functions to map Heap and Shared memory space
Diffstat (limited to 'src/core/mem_map.cpp')
-rw-r--r-- | src/core/mem_map.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/mem_map.cpp b/src/core/mem_map.cpp index 180829239c..f0090206e0 100644 --- a/src/core/mem_map.cpp +++ b/src/core/mem_map.cpp @@ -16,15 +16,15 @@ u8* g_base = NULL; ///< The base pointer to the aut MemArena g_arena; ///< The MemArena class -u8* g_heap_gsp = NULL; ///< GSP heap (main memory) u8* g_heap = NULL; ///< Application heap (main memory) +u8* g_heap_gsp = NULL; ///< GSP heap (main memory) u8* g_vram = NULL; ///< Video memory (VRAM) pointer u8* g_physical_bootrom = NULL; ///< Bootrom physical memory u8* g_uncached_bootrom = NULL; u8* g_physical_fcram = NULL; ///< Main physical memory (FCRAM) -u8* g_physical_heap_gsp = NULL; +u8* g_physical_heap_gsp = NULL; ///< GSP heap physical memory u8* g_physical_vram = NULL; ///< Video physical memory (VRAM) u8* g_physical_scratchpad = NULL; ///< Scratchpad memory used for main thread stack |