From 41e192eff2f539336a9ddb861089f142eeaa25e3 Mon Sep 17 00:00:00 2001 From: Corwin Date: Wed, 18 Oct 2023 00:17:24 +0100 Subject: [PATCH] set interrupt handler to its own section --- agb/src/interrupt_handler.s | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agb/src/interrupt_handler.s b/agb/src/interrupt_handler.s index e80efdfc..124be1e7 100644 --- a/agb/src/interrupt_handler.s +++ b/agb/src/interrupt_handler.s @@ -2,7 +2,7 @@ @ An interrupt handler that simply acknowledges all interrupts .arm .global InterruptHandler - .section .iwram, "ax", %progbits + .section .iwram.interrupt_handler, "ax", %progbits .align InterruptHandler: mov r2, #0x04000000 @ interrupt enable register location