From 924e7b6af87244a63a955757ae17c35803148895 Mon Sep 17 00:00:00 2001 From: bunnei Date: Wed, 30 Apr 2014 23:31:04 -0400 Subject: fixed a bug where ExeFs code was being incorrectly masked --- src/core/mem_map.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/core/mem_map.h') 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, -- cgit v1.2.3