summaryrefslogtreecommitdiff
path: root/src/core/mem_map.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2014-04-24 22:32:26 -0400
committerGravatar bunnei2014-04-24 22:32:26 -0400
commitb7cd4c9e90be42476a2e242571d36cbbca2fbd4c (patch)
treeded61f0cc1b93a96226a849388348feca591cfa5 /src/core/mem_map.cpp
parentadded GSP::RegisterInterruptRelayQueue function (diff)
downloadyuzu-b7cd4c9e90be42476a2e242571d36cbbca2fbd4c.tar.gz
yuzu-b7cd4c9e90be42476a2e242571d36cbbca2fbd4c.tar.xz
yuzu-b7cd4c9e90be42476a2e242571d36cbbca2fbd4c.zip
added functions to map Heap and Shared memory space
Diffstat (limited to 'src/core/mem_map.cpp')
-rw-r--r--src/core/mem_map.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/mem_map.cpp b/src/core/mem_map.cpp
index 180829239..f0090206e 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
16 16
17MemArena g_arena; ///< The MemArena class 17MemArena g_arena; ///< The MemArena class
18 18
19u8* g_heap_gsp = NULL; ///< GSP heap (main memory)
20u8* g_heap = NULL; ///< Application heap (main memory) 19u8* g_heap = NULL; ///< Application heap (main memory)
20u8* g_heap_gsp = NULL; ///< GSP heap (main memory)
21u8* g_vram = NULL; ///< Video memory (VRAM) pointer 21u8* g_vram = NULL; ///< Video memory (VRAM) pointer
22 22
23u8* g_physical_bootrom = NULL; ///< Bootrom physical memory 23u8* g_physical_bootrom = NULL; ///< Bootrom physical memory
24u8* g_uncached_bootrom = NULL; 24u8* g_uncached_bootrom = NULL;
25 25
26u8* g_physical_fcram = NULL; ///< Main physical memory (FCRAM) 26u8* g_physical_fcram = NULL; ///< Main physical memory (FCRAM)
27u8* g_physical_heap_gsp = NULL; 27u8* g_physical_heap_gsp = NULL; ///< GSP heap physical memory
28u8* g_physical_vram = NULL; ///< Video physical memory (VRAM) 28u8* g_physical_vram = NULL; ///< Video physical memory (VRAM)
29u8* g_physical_scratchpad = NULL; ///< Scratchpad memory used for main thread stack 29u8* g_physical_scratchpad = NULL; ///< Scratchpad memory used for main thread stack
30 30