diff options
author | Revo <projectrevotpp@hotmail.com> | 2020-06-13 13:12:33 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-13 13:12:33 -0400 |
commit | ae95019da3c7da624674794b8e2d503e063b82e6 (patch) | |
tree | 8793acb7d216df9adba3b87aed39b54f177b7b9a /arm9/lib/include/OS_interrupt.h | |
parent | c4263506fa96acc210d1cf356023a3ffde805a0b (diff) | |
parent | 339366f19680e505d5ff9763375f0fc159b5baed (diff) |
Merge pull request #163 from red031000/master
arm9 OS_tick
Diffstat (limited to 'arm9/lib/include/OS_interrupt.h')
-rw-r--r-- | arm9/lib/include/OS_interrupt.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arm9/lib/include/OS_interrupt.h b/arm9/lib/include/OS_interrupt.h index ec58a636..481e6c6c 100644 --- a/arm9/lib/include/OS_interrupt.h +++ b/arm9/lib/include/OS_interrupt.h @@ -1,9 +1,11 @@ #ifndef POKEDIAMOND_ARM9_OS_INTERRUPT_H #define POKEDIAMOND_ARM9_OS_INTERRUPT_H -#include "nitro/types.h" +#include "consts.h" #include "nitro/OS_interrupt_shared.h" +#define OS_IE_TIMER0 (1UL << REG_OS_IE_T0_SHIFT) + typedef void (*OSIrqFunction) (void); typedef struct |