summaryrefslogtreecommitdiff
path: root/src/core/mem_map.cpp
diff options
context:
space:
mode:
authorGravatar purpasmart962014-12-29 19:35:06 -0800
committerGravatar purpasmart962014-12-29 19:35:06 -0800
commitd5049cbba53d242b8461859fd02000b294164e77 (patch)
tree9f5888bf28cf41ce61e80d690d0981986da20be0 /src/core/mem_map.cpp
parentMerge pull request #253 from purpasmart96/mem_map (diff)
downloadyuzu-d5049cbba53d242b8461859fd02000b294164e77.tar.gz
yuzu-d5049cbba53d242b8461859fd02000b294164e77.tar.xz
yuzu-d5049cbba53d242b8461859fd02000b294164e77.zip
MemMap: Add support for DSP Read & Writes in the memory map
Diffstat (limited to 'src/core/mem_map.cpp')
-rw-r--r--src/core/mem_map.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/mem_map.cpp b/src/core/mem_map.cpp
index eea6c5bf1..a14e8303e 100644
--- a/src/core/mem_map.cpp
+++ b/src/core/mem_map.cpp
@@ -21,6 +21,7 @@ u8* g_heap = nullptr; ///< Application heap (main memory)
21u8* g_heap_linear = nullptr; ///< Linear heap 21u8* g_heap_linear = nullptr; ///< Linear heap
22u8* g_vram = nullptr; ///< Video memory (VRAM) pointer 22u8* g_vram = nullptr; ///< Video memory (VRAM) pointer
23u8* g_shared_mem = nullptr; ///< Shared memory 23u8* g_shared_mem = nullptr; ///< Shared memory
24u8* g_dsp_mem = nullptr; ///< DSP memory
24u8* g_kernel_mem; ///< Kernel memory 25u8* g_kernel_mem; ///< Kernel memory
25 26
26static u8* physical_bootrom = nullptr; ///< Bootrom physical memory 27static u8* physical_bootrom = nullptr; ///< Bootrom physical memory
@@ -32,6 +33,7 @@ static u8* physical_fcram = nullptr; ///< Main physical memory (FCRAM)
32static u8* physical_heap_gsp = nullptr; ///< GSP heap physical memory 33static u8* physical_heap_gsp = nullptr; ///< GSP heap physical memory
33static u8* physical_vram = nullptr; ///< Video physical memory (VRAM) 34static u8* physical_vram = nullptr; ///< Video physical memory (VRAM)
34static u8* physical_shared_mem = nullptr; ///< Physical shared memory 35static u8* physical_shared_mem = nullptr; ///< Physical shared memory
36static u8* physical_dsp_mem = nullptr; ///< Physical DSP memory
35static u8* physical_kernel_mem; ///< Kernel memory 37static u8* physical_kernel_mem; ///< Kernel memory
36 38
37// We don't declare the IO region in here since its handled by other means. 39// We don't declare the IO region in here since its handled by other means.
@@ -41,6 +43,7 @@ static MemoryView g_views[] = {
41 {&g_heap, &physical_fcram, HEAP_VADDR, HEAP_SIZE, MV_IS_PRIMARY_RAM}, 43 {&g_heap, &physical_fcram, HEAP_VADDR, HEAP_SIZE, MV_IS_PRIMARY_RAM},
42 {&g_shared_mem, &physical_shared_mem, SHARED_MEMORY_VADDR, SHARED_MEMORY_SIZE, 0}, 44 {&g_shared_mem, &physical_shared_mem, SHARED_MEMORY_VADDR, SHARED_MEMORY_SIZE, 0},
43 {&g_system_mem, &physical_system_mem, SYSTEM_MEMORY_VADDR, SYSTEM_MEMORY_SIZE, 0}, 45 {&g_system_mem, &physical_system_mem, SYSTEM_MEMORY_VADDR, SYSTEM_MEMORY_SIZE, 0},
46 {&g_dsp_mem, &physical_dsp_mem, DSP_MEMORY_VADDR, DSP_MEMORY_SIZE, 0},
44 {&g_kernel_mem, &physical_kernel_mem, KERNEL_MEMORY_VADDR, KERNEL_MEMORY_SIZE, 0}, 47 {&g_kernel_mem, &physical_kernel_mem, KERNEL_MEMORY_VADDR, KERNEL_MEMORY_SIZE, 0},
45 {&g_heap_linear, &physical_heap_gsp, HEAP_LINEAR_VADDR, HEAP_LINEAR_SIZE, 0}, 48 {&g_heap_linear, &physical_heap_gsp, HEAP_LINEAR_VADDR, HEAP_LINEAR_SIZE, 0},
46}; 49};