diff options
author | Michael Panzlaff <michael.panzlaff@fau.de> | 2021-06-25 15:01:22 +0200 |
---|---|---|
committer | Michael Panzlaff <michael.panzlaff@fau.de> | 2021-08-25 18:03:39 +0200 |
commit | 69200d83f7bf3c189e226f3561cef3a6ee7ee6ce (patch) | |
tree | c4c4548ae3e936a0ef4506b18bc2384b708fb78e /arm7/lib/src/OS_reset.c | |
parent | 4195577deb16293f0e0cb93fe9a6da80cc0c97eb (diff) |
move PXI function declarations from OS_reset to their respective headers
Diffstat (limited to 'arm7/lib/src/OS_reset.c')
-rw-r--r-- | arm7/lib/src/OS_reset.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arm7/lib/src/OS_reset.c b/arm7/lib/src/OS_reset.c index e0f380f8..13d59bfa 100644 --- a/arm7/lib/src/OS_reset.c +++ b/arm7/lib/src/OS_reset.c @@ -2,6 +2,7 @@ #include "OS_reset.h" #include "OS_interrupt.h" #include "OS_terminate_proc.h" +#include "PXI_fifo.h" static u16 OSi_IsInitReset = 0; vu16 OSi_IsResetOccurred = 0; @@ -10,8 +11,6 @@ extern void MI_StopDma(u32 dma); extern OSIrqMask OS_SetIrqMask(OSIrqMask mask); extern OSIrqMask OS_ResetRequestIrqMask(OSIrqMask mask); extern void SND_Shutdown(void); -extern void PXI_SetFifoRecvCallback(u32 param1, void* callback); -extern u32 PXI_SendWordByFifo(u32 param1, u32 data, u32 param2); extern void FUN_038073EC(void); //OSi_DoResetSystem, in wram ARM_FUNC void OS_InitReset(void) |