summaryrefslogtreecommitdiff
path: root/src/core/mem_map.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/mem_map.h')
-rw-r--r--src/core/mem_map.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/mem_map.h b/src/core/mem_map.h
index ab2c2d4ec..d0308fa5c 100644
--- a/src/core/mem_map.h
+++ b/src/core/mem_map.h
@@ -50,8 +50,8 @@ extern u8 *g_base;
50// These are guaranteed to point to "low memory" addresses (sub-32-bit). 50// These are guaranteed to point to "low memory" addresses (sub-32-bit).
51// 64-bit: Pointers to low-mem (sub-0x10000000) mirror 51// 64-bit: Pointers to low-mem (sub-0x10000000) mirror
52// 32-bit: Same as the corresponding physical/virtual pointers. 52// 32-bit: Same as the corresponding physical/virtual pointers.
53extern u8* g_fcram; ///< Main memory 53extern u8* g_fcram; ///< Main memory
54extern u8* g_vram; ///< Video memory (VRAM) 54extern u8* g_vram; ///< Video memory (VRAM)
55extern u8* g_scratchpad; ///< Stack memory 55extern u8* g_scratchpad; ///< Stack memory
56 56
57void Init(); 57void Init();
@@ -71,7 +71,7 @@ void Write32(const u32 addr, const u32 data);
71u8* GetPointer(const u32 Address); 71u8* GetPointer(const u32 Address);
72 72
73inline const char* GetCharPointer(const u32 address) { 73inline const char* GetCharPointer(const u32 address) {
74 return (const char *)GetPointer(address); 74 return (const char *)GetPointer(address);
75} 75}
76 76
77} // namespace 77} // namespace