summaryrefslogtreecommitdiff
path: root/src/core/memory.h
diff options
context:
space:
mode:
authorGravatar N00byKing2018-03-22 16:46:33 +0100
committerGravatar N00byKing2018-03-22 21:25:06 +0100
commit8afdbf6a1fb933d44e0e4d04cc014d0fcd0c8b14 (patch)
treebd7283504909f451ab1a879dbc1f3b87008b2318 /src/core/memory.h
parentMerge pull request #261 from mailwl/spl (diff)
downloadyuzu-8afdbf6a1fb933d44e0e4d04cc014d0fcd0c8b14.tar.gz
yuzu-8afdbf6a1fb933d44e0e4d04cc014d0fcd0c8b14.tar.xz
yuzu-8afdbf6a1fb933d44e0e4d04cc014d0fcd0c8b14.zip
Remove more N3DS References
Diffstat (limited to 'src/core/memory.h')
-rw-r--r--src/core/memory.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/core/memory.h b/src/core/memory.h
index f406cc848..f5bf0141f 100644
--- a/src/core/memory.h
+++ b/src/core/memory.h
@@ -98,12 +98,6 @@ enum : PAddr {
98 VRAM_SIZE = 0x00600000, ///< VRAM size (6MB) 98 VRAM_SIZE = 0x00600000, ///< VRAM size (6MB)
99 VRAM_PADDR_END = VRAM_PADDR + VRAM_SIZE, 99 VRAM_PADDR_END = VRAM_PADDR + VRAM_SIZE,
100 100
101 /// New 3DS additional memory. Supposedly faster than regular FCRAM. Part of it can be used by
102 /// applications and system modules if mapped via the ExHeader.
103 N3DS_EXTRA_RAM_PADDR = 0x1F000000,
104 N3DS_EXTRA_RAM_SIZE = 0x00400000, ///< New 3DS additional memory size (4MB)
105 N3DS_EXTRA_RAM_PADDR_END = N3DS_EXTRA_RAM_PADDR + N3DS_EXTRA_RAM_SIZE,
106
107 /// DSP memory 101 /// DSP memory
108 DSP_RAM_PADDR = 0x1FF00000, 102 DSP_RAM_PADDR = 0x1FF00000,
109 DSP_RAM_SIZE = 0x00080000, ///< DSP memory size (512KB) 103 DSP_RAM_SIZE = 0x00080000, ///< DSP memory size (512KB)
@@ -119,7 +113,6 @@ enum : PAddr {
119 FCRAM_SIZE = 0x08000000, ///< FCRAM size on the Old 3DS (128MB) 113 FCRAM_SIZE = 0x08000000, ///< FCRAM size on the Old 3DS (128MB)
120 FCRAM_N3DS_SIZE = 0x10000000, ///< FCRAM size on the New 3DS (256MB) 114 FCRAM_N3DS_SIZE = 0x10000000, ///< FCRAM size on the New 3DS (256MB)
121 FCRAM_PADDR_END = FCRAM_PADDR + FCRAM_SIZE, 115 FCRAM_PADDR_END = FCRAM_PADDR + FCRAM_SIZE,
122 FCRAM_N3DS_PADDR_END = FCRAM_PADDR + FCRAM_N3DS_SIZE,
123}; 116};
124 117
125/// Virtual user-space memory regions 118/// Virtual user-space memory regions
@@ -135,10 +128,6 @@ enum : VAddr {
135 LINEAR_HEAP_SIZE = 0x08000000, 128 LINEAR_HEAP_SIZE = 0x08000000,
136 LINEAR_HEAP_VADDR_END = LINEAR_HEAP_VADDR + LINEAR_HEAP_SIZE, 129 LINEAR_HEAP_VADDR_END = LINEAR_HEAP_VADDR + LINEAR_HEAP_SIZE,
137 130
138 /// Maps 1:1 to New 3DS additional memory
139 N3DS_EXTRA_RAM_VADDR = 0x1E800000,
140 N3DS_EXTRA_RAM_VADDR_END = N3DS_EXTRA_RAM_VADDR + N3DS_EXTRA_RAM_SIZE,
141
142 /// Maps 1:1 to the IO register area. 131 /// Maps 1:1 to the IO register area.
143 IO_AREA_VADDR = 0x1EC00000, 132 IO_AREA_VADDR = 0x1EC00000,
144 IO_AREA_VADDR_END = IO_AREA_VADDR + IO_AREA_SIZE, 133 IO_AREA_VADDR_END = IO_AREA_VADDR + IO_AREA_SIZE,