diff options
author | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2015-05-24 02:12:57 -0300 |
---|---|---|
committer | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2015-05-27 03:24:12 -0300 |
commit | 88365a23e76fe3a4a64c9dc65aa8554e25a20af0 (patch) | |
tree | 0ea4d18e1721471c8488f795f09f86c2bf80d148 /src/core/mem_map.h | |
parent | 0a60aa75c2b03b8ed6752e5c64462bf86c52fcfc (diff) |
Memmap: Remove unused global pointers to memory areas
Diffstat (limited to 'src/core/mem_map.h')
-rw-r--r-- | src/core/mem_map.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/core/mem_map.h b/src/core/mem_map.h index 945815cd6..ba50914a8 100644 --- a/src/core/mem_map.h +++ b/src/core/mem_map.h @@ -8,14 +8,6 @@ namespace Memory { -extern u8* g_exefs_code; ///< ExeFS:/.code is loaded here -extern u8* g_heap; ///< Application heap (main memory) -extern u8* g_shared_mem; ///< Shared memory -extern u8* g_heap_linear; ///< Linear heap (main memory) -extern u8* g_vram; ///< Video memory (VRAM) -extern u8* g_dsp_mem; ///< DSP memory -extern u8* g_tls_mem; ///< TLS memory - void Init(); void Shutdown(); |