diff --git a/src/libs/memory.c b/src/libs/memory.c index 1f24aeb..90ea65a 100644 --- a/src/libs/memory.c +++ b/src/libs/memory.c @@ -50,7 +50,7 @@ static int cmp(uint8_t *lft, uint8_t *rgt) /* Code of exception that occurs during a memory access */ static uint32_t exception = 0; /* Exception-catching function */ -GMAPPED static int catch_exc(uint32_t code) +static int catch_exc(uint32_t code) { if(code == 0x100 || code == 0x0e0) { diff --git a/src/mem/mem.c b/src/mem/mem.c index 8ba332c..3ab5511 100644 --- a/src/mem/mem.c +++ b/src/mem/mem.c @@ -9,7 +9,7 @@ /* Code of exception that occurs during a memory access */ static uint32_t exception = 0; /* Exception-catching function */ -GMAPPED static int catch_exc(uint32_t code) +static int catch_exc(uint32_t code) { if(code == 0x040 || code == 0x0e0) {