diff options
author | Cleverking2003 <30466983+Cleverking2003@users.noreply.github.com> | 2020-07-28 08:35:43 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-28 08:35:43 +0300 |
commit | 3aeabb3efb6e7b40de1350550ddf0e347f51908b (patch) | |
tree | 944e7253f20550ae77719608b91d21f54eab6091 /arm7/asm/OS_irqHandler.s | |
parent | d9ea992246a6d29133fc5accb03cfb8dcc4665f6 (diff) | |
parent | 2202000c6869dbaad3b8fde381b6facfb3e651bb (diff) |
Merge pull request #247 from red031000/master
arm7 OS_irqTable
Diffstat (limited to 'arm7/asm/OS_irqHandler.s')
-rw-r--r-- | arm7/asm/OS_irqHandler.s | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/arm7/asm/OS_irqHandler.s b/arm7/asm/OS_irqHandler.s index b05113f1..8639392c 100644 --- a/arm7/asm/OS_irqHandler.s +++ b/arm7/asm/OS_irqHandler.s @@ -1,7 +1,13 @@ .include "asm/macros.inc" .include "global.inc" - .section .text + .section .bss + + .global OSi_IrqThreadQueue +OSi_IrqThreadQueue: ;0x0380770C + .space 0x03807714 - 0x0380770C + + .section .text arm_func_start OS_IrqHandler OS_IrqHandler: ; 0x037F853C |