diff options
author | bunnei <ericbunnie@gmail.com> | 2014-05-01 05:31:04 +0200 |
---|---|---|
committer | bunnei <ericbunnie@gmail.com> | 2014-05-01 05:31:04 +0200 |
commit | 924e7b6af87244a63a955757ae17c35803148895 (patch) | |
tree | 917729017de18a527060bce796952f19e7cd42d5 /src/core/mem_map.h | |
parent | added virtual memory map for ExeFS (where ARM11 code is supposed to be loaded) (diff) | |
download | yuzu-924e7b6af87244a63a955757ae17c35803148895.tar yuzu-924e7b6af87244a63a955757ae17c35803148895.tar.gz yuzu-924e7b6af87244a63a955757ae17c35803148895.tar.bz2 yuzu-924e7b6af87244a63a955757ae17c35803148895.tar.lz yuzu-924e7b6af87244a63a955757ae17c35803148895.tar.xz yuzu-924e7b6af87244a63a955757ae17c35803148895.tar.zst yuzu-924e7b6af87244a63a955757ae17c35803148895.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/mem_map.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/mem_map.h b/src/core/mem_map.h index 00c3b47fc..62a8b82a8 100644 --- a/src/core/mem_map.h +++ b/src/core/mem_map.h @@ -35,7 +35,7 @@ enum { EXEFS_CODE_SIZE = 0x03F00000, EXEFS_CODE_VADDR = 0x00100000, ///< ExeFS:/.code is loaded here EXEFS_CODE_VADDR_END = (EXEFS_CODE_VADDR + EXEFS_CODE_SIZE), - EXEFS_CODE_MASK = (EXEFS_CODE_VADDR - 1), + EXEFS_CODE_MASK = 0x03FFFFFF, HEAP_SIZE = FCRAM_SIZE, ///< Application heap size //HEAP_PADDR = HEAP_GSP_SIZE, |