diff options
author | red031000 <rubenru09@aol.com> | 2020-07-13 22:39:37 +0100 |
---|---|---|
committer | red031000 <rubenru09@aol.com> | 2020-07-13 22:39:37 +0100 |
commit | d2ff9e5df70f2c6be6a0c822ba2e689f82911911 (patch) | |
tree | e559d4ac0279f78b740b443a8c3936138dbfd226 /arm9/lib/src/OS_timer.c | |
parent | 4cfe56bcc1de5240c770b570f6ce9ac13fc5f33c (diff) |
match OS_timer
Diffstat (limited to 'arm9/lib/src/OS_timer.c')
-rw-r--r-- | arm9/lib/src/OS_timer.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/arm9/lib/src/OS_timer.c b/arm9/lib/src/OS_timer.c new file mode 100644 index 00000000..69a1a6cd --- /dev/null +++ b/arm9/lib/src/OS_timer.c @@ -0,0 +1,9 @@ +#include "OS_timer.h" +#include "function_target.h" + +static u16 OSi_TimerReserved = 0; + +ARM_FUNC void OSi_SetTimerReserved(s32 timerNum) +{ + OSi_TimerReserved |= (1 << timerNum); +} |