summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorGravatar Subv2016-04-17 21:10:17 -0500
committerGravatar Subv2016-05-12 20:00:33 -0500
commitf72bd5721240d9f33d803546c4bbc21a6f4ee466 (patch)
tree0e46d1281432e8eff73a82c01be2cb57eeea10f7 /src/core
parentKernel/SharedMemory: Properly implemented shared memory support. (diff)
downloadyuzu-f72bd5721240d9f33d803546c4bbc21a6f4ee466.tar.gz
yuzu-f72bd5721240d9f33d803546c4bbc21a6f4ee466.tar.xz
yuzu-f72bd5721240d9f33d803546c4bbc21a6f4ee466.zip
Kernel/Memory: Remove the Shared Memory region from the legacy memory map.
Diffstat (limited to 'src/core')
-rw-r--r--src/core/hle/kernel/memory.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/core/hle/kernel/memory.cpp b/src/core/hle/kernel/memory.cpp
index 862643448..6f1f0856c 100644
--- a/src/core/hle/kernel/memory.cpp
+++ b/src/core/hle/kernel/memory.cpp
@@ -107,7 +107,6 @@ struct MemoryArea {
107 107
108// We don't declare the IO regions in here since its handled by other means. 108// We don't declare the IO regions in here since its handled by other means.
109static MemoryArea memory_areas[] = { 109static MemoryArea memory_areas[] = {
110 {SHARED_MEMORY_VADDR, SHARED_MEMORY_SIZE, "Shared Memory"}, // Shared memory
111 {VRAM_VADDR, VRAM_SIZE, "VRAM"}, // Video memory (VRAM) 110 {VRAM_VADDR, VRAM_SIZE, "VRAM"}, // Video memory (VRAM)
112 {TLS_AREA_VADDR, TLS_AREA_SIZE, "TLS Area"}, // TLS memory 111 {TLS_AREA_VADDR, TLS_AREA_SIZE, "TLS Area"}, // TLS memory
113}; 112};