diff options
author | archshift <admin@archshift.com> | 2014-05-01 03:01:12 +0200 |
---|---|---|
committer | archshift <admin@archshift.com> | 2014-05-01 03:01:12 +0200 |
commit | bdc3c999048420dfc937b3cf5362ffee008d6420 (patch) | |
tree | e3e935477a356b91439770dedd822ee6e56a0e03 /src/core/mem_map.cpp | |
parent | Sets OGL version for Qt; will only work with Qt5 (diff) | |
parent | added virtual memory map for ExeFS (where ARM11 code is supposed to be loaded) (diff) | |
download | yuzu-bdc3c999048420dfc937b3cf5362ffee008d6420.tar yuzu-bdc3c999048420dfc937b3cf5362ffee008d6420.tar.gz yuzu-bdc3c999048420dfc937b3cf5362ffee008d6420.tar.bz2 yuzu-bdc3c999048420dfc937b3cf5362ffee008d6420.tar.lz yuzu-bdc3c999048420dfc937b3cf5362ffee008d6420.tar.xz yuzu-bdc3c999048420dfc937b3cf5362ffee008d6420.tar.zst yuzu-bdc3c999048420dfc937b3cf5362ffee008d6420.zip |
Diffstat (limited to 'src/core/mem_map.cpp')
-rw-r--r-- | src/core/mem_map.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/mem_map.cpp b/src/core/mem_map.cpp index 96245e320..af99cbe32 100644 --- a/src/core/mem_map.cpp +++ b/src/core/mem_map.cpp @@ -16,6 +16,7 @@ u8* g_base = NULL; ///< The base pointer to the aut MemArena g_arena; ///< The MemArena class +u8* g_exefs_code = NULL; ///< ExeFS:/.code is loaded here u8* g_heap = NULL; ///< Application heap (main memory) u8* g_heap_gsp = NULL; ///< GSP heap (main memory) u8* g_vram = NULL; ///< Video memory (VRAM) pointer @@ -24,6 +25,7 @@ u8* g_shared_mem = NULL; ///< Shared memory u8* g_physical_bootrom = NULL; ///< Bootrom physical memory u8* g_uncached_bootrom = NULL; +u8* g_physical_exefs_code = NULL; ///< Phsical ExeFS:/.code is loaded here u8* g_physical_fcram = NULL; ///< Main physical memory (FCRAM) u8* g_physical_heap_gsp = NULL; ///< GSP heap physical memory u8* g_physical_vram = NULL; ///< Video physical memory (VRAM) @@ -31,6 +33,7 @@ u8* g_physical_shared_mem = NULL; ///< Physical shared memory // We don't declare the IO region in here since its handled by other means. static MemoryView g_views[] = { + {&g_exefs_code, &g_physical_exefs_code, EXEFS_CODE_VADDR, EXEFS_CODE_SIZE, 0}, {&g_vram, &g_physical_vram, VRAM_VADDR, VRAM_SIZE, 0}, {&g_heap, &g_physical_fcram, HEAP_VADDR, HEAP_SIZE, MV_IS_PRIMARY_RAM}, {&g_shared_mem, &g_physical_shared_mem, SHARED_MEMORY_VADDR, SHARED_MEMORY_SIZE, 0}, |