summaryrefslogtreecommitdiff
path: root/src/core/mem_map.cpp
diff options
context:
space:
mode:
authorGravatar Yuri Kunde Schlesner2015-07-17 23:19:16 -0300
committerGravatar Yuri Kunde Schlesner2015-08-16 01:03:45 -0300
commitcdeeecf0807d0005356f30db0f7164c5891a9245 (patch)
treee32e6d673cdac358df0abd3d3ece13f37c1c28d5 /src/core/mem_map.cpp
parentMemory: Move PAGE_MASK and PAGE_BITS to memory.h (diff)
downloadyuzu-cdeeecf0807d0005356f30db0f7164c5891a9245.tar.gz
yuzu-cdeeecf0807d0005356f30db0f7164c5891a9245.tar.xz
yuzu-cdeeecf0807d0005356f30db0f7164c5891a9245.zip
Kernel: Properly implement ControlMemory FREE and COMMIT
Diffstat (limited to 'src/core/mem_map.cpp')
-rw-r--r--src/core/mem_map.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/core/mem_map.cpp b/src/core/mem_map.cpp
index cbe993fbe..c95dea064 100644
--- a/src/core/mem_map.cpp
+++ b/src/core/mem_map.cpp
@@ -32,9 +32,7 @@ struct MemoryArea {
32 32
33// We don't declare the IO regions in here since its handled by other means. 33// We don't declare the IO regions in here since its handled by other means.
34static MemoryArea memory_areas[] = { 34static MemoryArea memory_areas[] = {
35 {HEAP_VADDR, HEAP_SIZE, "Heap"}, // Application heap (main memory)
36 {SHARED_MEMORY_VADDR, SHARED_MEMORY_SIZE, "Shared Memory"}, // Shared memory 35 {SHARED_MEMORY_VADDR, SHARED_MEMORY_SIZE, "Shared Memory"}, // Shared memory
37 {LINEAR_HEAP_VADDR, LINEAR_HEAP_SIZE, "Linear Heap"}, // Linear heap (main memory)
38 {VRAM_VADDR, VRAM_SIZE, "VRAM"}, // Video memory (VRAM) 36 {VRAM_VADDR, VRAM_SIZE, "VRAM"}, // Video memory (VRAM)
39 {DSP_RAM_VADDR, DSP_RAM_SIZE, "DSP RAM"}, // DSP memory 37 {DSP_RAM_VADDR, DSP_RAM_SIZE, "DSP RAM"}, // DSP memory
40 {TLS_AREA_VADDR, TLS_AREA_SIZE, "TLS Area"}, // TLS memory 38 {TLS_AREA_VADDR, TLS_AREA_SIZE, "TLS Area"}, // TLS memory