diff options
| author | 2014-04-24 23:56:06 -0400 | |
|---|---|---|
| committer | 2014-04-24 23:56:06 -0400 | |
| commit | 890c7261d2d6d6a760512ebe93c565ee87220983 (patch) | |
| tree | 7d822f01da90c37c188faa76578c0d1733136d06 /src/core/mem_map.cpp | |
| parent | added functions to map Heap and Shared memory space (diff) | |
| download | yuzu-890c7261d2d6d6a760512ebe93c565ee87220983.tar.gz yuzu-890c7261d2d6d6a760512ebe93c565ee87220983.tar.xz yuzu-890c7261d2d6d6a760512ebe93c565ee87220983.zip | |
- added preliminary support for svc_MapMemoryBlock
- added shared memory region
- moarrrr cleanups to memory_map
Diffstat (limited to 'src/core/mem_map.cpp')
| -rw-r--r-- | src/core/mem_map.cpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/core/mem_map.cpp b/src/core/mem_map.cpp index f0090206e..96245e320 100644 --- a/src/core/mem_map.cpp +++ b/src/core/mem_map.cpp | |||
| @@ -19,6 +19,7 @@ MemArena g_arena; ///< The MemArena class | |||
| 19 | u8* g_heap = NULL; ///< Application heap (main memory) | 19 | u8* g_heap = NULL; ///< Application heap (main memory) |
| 20 | u8* g_heap_gsp = NULL; ///< GSP heap (main memory) | 20 | u8* g_heap_gsp = NULL; ///< GSP heap (main memory) |
| 21 | u8* g_vram = NULL; ///< Video memory (VRAM) pointer | 21 | u8* g_vram = NULL; ///< Video memory (VRAM) pointer |
| 22 | u8* g_shared_mem = NULL; ///< Shared memory | ||
| 22 | 23 | ||
| 23 | u8* g_physical_bootrom = NULL; ///< Bootrom physical memory | 24 | u8* g_physical_bootrom = NULL; ///< Bootrom physical memory |
| 24 | u8* g_uncached_bootrom = NULL; | 25 | u8* g_uncached_bootrom = NULL; |
| @@ -26,13 +27,14 @@ u8* g_uncached_bootrom = NULL; | |||
| 26 | u8* g_physical_fcram = NULL; ///< Main physical memory (FCRAM) | 27 | u8* g_physical_fcram = NULL; ///< Main physical memory (FCRAM) |
| 27 | u8* g_physical_heap_gsp = NULL; ///< GSP heap physical memory | 28 | u8* g_physical_heap_gsp = NULL; ///< GSP heap physical memory |
| 28 | u8* g_physical_vram = NULL; ///< Video physical memory (VRAM) | 29 | u8* g_physical_vram = NULL; ///< Video physical memory (VRAM) |
| 29 | u8* g_physical_scratchpad = NULL; ///< Scratchpad memory used for main thread stack | 30 | u8* g_physical_shared_mem = NULL; ///< Physical shared memory |
| 30 | 31 | ||
| 31 | // We don't declare the IO region in here since its handled by other means. | 32 | // We don't declare the IO region in here since its handled by other means. |
| 32 | static MemoryView g_views[] = { | 33 | static MemoryView g_views[] = { |
| 33 | {&g_vram, &g_physical_vram, VRAM_VADDR, VRAM_SIZE, 0}, | 34 | {&g_vram, &g_physical_vram, VRAM_VADDR, VRAM_SIZE, 0}, |
| 34 | {&g_heap_gsp, &g_physical_heap_gsp, HEAP_GSP_VADDR, HEAP_GSP_SIZE, 0}, | 35 | {&g_heap, &g_physical_fcram, HEAP_VADDR, HEAP_SIZE, MV_IS_PRIMARY_RAM}, |
| 35 | {&g_heap, &g_physical_fcram, HEAP_VADDR, HEAP_SIZE, MV_IS_PRIMARY_RAM}, | 36 | {&g_shared_mem, &g_physical_shared_mem, SHARED_MEMORY_VADDR, SHARED_MEMORY_SIZE, 0}, |
| 37 | {&g_heap_gsp, &g_physical_heap_gsp, HEAP_GSP_VADDR, HEAP_GSP_SIZE, 0}, | ||
| 36 | }; | 38 | }; |
| 37 | 39 | ||
| 38 | /*static MemoryView views[] = | 40 | /*static MemoryView views[] = |