diff options
| author | 2014-04-17 21:15:40 -0400 | |
|---|---|---|
| committer | 2014-04-17 21:15:40 -0400 | |
| commit | a9dba388eba586691724187fe53b385cc0bf23aa (patch) | |
| tree | cdd718342fba54e3345d111e14150a2461d795a7 /src/core/mem_map.cpp | |
| parent | more various refactors to memory interface (diff) | |
| download | yuzu-a9dba388eba586691724187fe53b385cc0bf23aa.tar.gz yuzu-a9dba388eba586691724187fe53b385cc0bf23aa.tar.xz yuzu-a9dba388eba586691724187fe53b385cc0bf23aa.zip | |
added memory read/write to GSP heap
Diffstat (limited to 'src/core/mem_map.cpp')
| -rw-r--r-- | src/core/mem_map.cpp | 5 |
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 | |||
| 16 | 16 | ||
| 17 | MemArena g_arena; ///< The MemArena class | 17 | MemArena g_arena; ///< The MemArena class |
| 18 | 18 | ||
| 19 | u8* g_bootrom = NULL; ///< Bootrom physical memory | 19 | u8* g_heap_gsp = NULL; ///< GSP heap (main memory) |
| 20 | u8* g_heap_gsp = NULL; | 20 | u8* g_heap = NULL; ///< Application heap (main memory) |
| 21 | u8* g_heap = NULL; | ||
| 22 | u8* g_vram = NULL; ///< Video memory (VRAM) pointer | 21 | u8* g_vram = NULL; ///< Video memory (VRAM) pointer |
| 23 | 22 | ||
| 24 | u8* g_physical_bootrom = NULL; ///< Bootrom physical memory | 23 | u8* g_physical_bootrom = NULL; ///< Bootrom physical memory |