diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2020-05-22 16:36:02 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2020-05-22 16:36:02 -0400 |
commit | d382442e45e5aaf4a8c45e40c13f5328e79349d7 (patch) | |
tree | d671042f5374e38f1d143c6f93e98c983a0bb579 /arm9/asm/OS_valarm.s | |
parent | 09eb26569c0c5e9b733a3c4f33bcf876e48dc0be (diff) |
Distribute bss_3.s among code files
Diffstat (limited to 'arm9/asm/OS_valarm.s')
-rw-r--r-- | arm9/asm/OS_valarm.s | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/arm9/asm/OS_valarm.s b/arm9/asm/OS_valarm.s index beb9f29b..1b282c71 100644 --- a/arm9/asm/OS_valarm.s +++ b/arm9/asm/OS_valarm.s @@ -1,6 +1,24 @@ .include "asm/macros.inc" .include "global.inc" + .section .bss + + .global OSi_UseVAlarm +OSi_UseVAlarm: ; 0x021D37C8 + .space 0x4 + + .global OSi_PreviousVCount +OSi_PreviousVCount: ; 0x021D37CC + .space 0x4 + + .global OSi_VFrameCount +OSi_VFrameCount: ; 0x021D37D0 + .space 0x4 + + .global OSi_VAlarmQueue +OSi_VAlarmQueue: ; 0x021D37D4 + .space 0x8 + .text arm_func_start OS_InitVAlarm |