diff options
author | Seth Barberee <seth.barberee@gmail.com> | 2020-10-20 13:02:58 -0500 |
---|---|---|
committer | Seth Barberee <seth.barberee@gmail.com> | 2020-10-20 13:02:58 -0500 |
commit | a0aac0e9d22251550fc01bc899d3144639072d3e (patch) | |
tree | a1fc11374ef4b736a00ff1c717d810b74b662ce2 /asm/syscall.s | |
parent | 33b0b86f530d2156bd7c195e057753cf40863942 (diff) |
static-link libagbsyscall similar to pokeemerald... Thx Pika
Diffstat (limited to 'asm/syscall.s')
-rw-r--r-- | asm/syscall.s | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/asm/syscall.s b/asm/syscall.s deleted file mode 100644 index d114f31..0000000 --- a/asm/syscall.s +++ /dev/null @@ -1,34 +0,0 @@ - .include "asm/macros.inc" - - .syntax unified - - .text - - thumb_func_start CpuSet -CpuSet: - swi 0xB - bx lr - thumb_func_end CpuSet - - thumb_func_start SoundBiasReset -SoundBiasReset: - movs r0, 0 - swi 0x19 - bx lr - thumb_func_end SoundBiasReset - - thumb_func_start SoundBiasSet -SoundBiasSet: - movs r0, 0x1 - swi 0x19 - bx lr - thumb_func_end SoundBiasSet - - thumb_func_start VBlankIntrWait -VBlankIntrWait: - movs r2, 0 - swi 0x5 - bx lr - thumb_func_end VBlankIntrWait - - .align 2, 0 @ Don't pad with nop. |