diff options
author | YamaArashi <shadow962@live.com> | 2016-01-06 21:24:27 -0800 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-01-06 21:24:27 -0800 |
commit | b18325fc3ef1aff22f927b9a1ee2beea3da1eaa2 (patch) | |
tree | 99694b792a8f90ca651a65a8cd5bb53a6d63fc80 | |
parent | c14df031ad7e4a30bb58b9c1712c1ee672e10657 (diff) |
fix last @ local label
-rw-r--r-- | asm/crt0.s | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/asm/crt0.s b/asm/crt0.s index 4ceaba2af..fa6d13c94 100644 --- a/asm/crt0.s +++ b/asm/crt0.s @@ -96,8 +96,8 @@ InterruptMain: ; 8000248 add r12, r12, 0x4 ands r0, r1, INTR_FLAG_GAMEPAK strbne r0, [r3, OFFSET_REG_SOUNDCNT_X - 0x200] -@loop: - bne @loop +$loop: + bne $loop $foundInterrupt: strh r0, [r3, OFFSET_REG_IF - 0x200] bic r2, r2, r0 |