remove GMAPPED following change in exception catcher calls

These are now called with TLB misses enabled, so there is no need to map
them constantly.
This commit is contained in:
Lephe 2020-09-17 14:47:31 +02:00
parent fda5606c2a
commit 36f3de29b8
Signed by: Lephenixnoir
GPG Key ID: 1BBA026E13FC0495
2 changed files with 2 additions and 2 deletions

View File

@ -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)
{

View File

@ -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)
{