diff options
author | PikalaxALT <PikalaxALT@users.noreply.github.com> | 2020-05-11 17:45:35 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-11 17:45:35 -0400 |
commit | 2746b162878a466fa50e3a2945b1f30642ef186f (patch) | |
tree | 650ee16906300c62e39da28c962b628daa7bdc27 /arm9/lib/include/OS_interrupt.h | |
parent | 4a8f611094056abe4fa53a824c4100f71773abf5 (diff) | |
parent | a2ab3a44f5a44ef2de486c56ee47c4022b8395f0 (diff) |
Merge pull request #75 from red031000/master
OSi_EnterTimerCallback and some more registers
Diffstat (limited to 'arm9/lib/include/OS_interrupt.h')
-rw-r--r-- | arm9/lib/include/OS_interrupt.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arm9/lib/include/OS_interrupt.h b/arm9/lib/include/OS_interrupt.h index b8425b4e..21ce2ea0 100644 --- a/arm9/lib/include/OS_interrupt.h +++ b/arm9/lib/include/OS_interrupt.h @@ -19,11 +19,12 @@ typedef struct typedef u32 OSIrqMask; extern OSIrqFunction OS_IRQTable[]; -extern OSIrqCallbackInfo OSi_IrqCallbackInfo[7+1]; +extern OSIrqCallbackInfo OSi_IrqCallbackInfo[8]; void OS_InitIrqTable(); void OS_SetIrqFunction(OSIrqMask intrBit, OSIrqFunction function); OSIrqFunction OS_GetIrqFunction(OSIrqMask intrBit); void OSi_EnterDmaCallback(u32 dmaNo, void (*callback) (void *), void *arg); +void OSi_EnterTimerCallback(u32 timerNo, void (*callback) (void *), void *arg); #endif //POKEDIAMOND_OS_INTERRUPT_H |