diff options
author | Revo <projectrevotpp@hotmail.com> | 2020-05-24 07:00:57 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-24 07:00:57 -0400 |
commit | 94af15fab8e80f61326fc0427c5412e60b0d67ea (patch) | |
tree | 9542fdb55f9b183b54ec043aa9f8b2c685bbd7d1 /arm9/asm/OS_irqHandler.s | |
parent | 0b01c7d1c57c4e21fdb0069b3ac4f9c7276b3cc1 (diff) | |
parent | b4743f04e30937b19aca974bf2222de8fe3eb36e (diff) |
Merge pull request #107 from PikalaxALT/pikalax_work
Split rodata and bss
Diffstat (limited to 'arm9/asm/OS_irqHandler.s')
-rw-r--r-- | arm9/asm/OS_irqHandler.s | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/arm9/asm/OS_irqHandler.s b/arm9/asm/OS_irqHandler.s index 9dd30869..d0e563fb 100644 --- a/arm9/asm/OS_irqHandler.s +++ b/arm9/asm/OS_irqHandler.s @@ -1,10 +1,26 @@ .include "asm/macros.inc" .include "global.inc" - .section .dtcm + .section .data + + .global OSi_IrqCallbackInfoIndex +OSi_IrqCallbackInfoIndex: ; 0x02106818 + .short 8 + .short 9 + .short 10 + .short 11 + .short 3 + .short 4 + .short 5 + .short 6 + + ; pragma section DTCM begin + .section .bss .balign 16, 0 .global OSi_IrqThreadQueue OSi_IrqThreadQueue: ; 027E0060 + .space 4 + ; pragma section DTCM end .section .text |