summaryrefslogtreecommitdiff
path: root/include/nitro/os.c
diff options
context:
space:
mode:
Diffstat (limited to 'include/nitro/os.c')
-rw-r--r--include/nitro/os.c38
1 files changed, 0 insertions, 38 deletions
diff --git a/include/nitro/os.c b/include/nitro/os.c
deleted file mode 100644
index 2531a636..00000000
--- a/include/nitro/os.c
+++ /dev/null
@@ -1,38 +0,0 @@
-//
-// Created by mart on 4/12/20.
-//
-
-#include "os.h"
-
-extern void PXI_Init();
-extern void OS_InitLock();
-extern void OS_InitIrqTable();
-extern void OS_SetIrqStackChecker();
-extern void OS_InitException();
-extern void MI_Init();
-extern void OS_InitVAlarm();
-extern void OSi_InitVramExclusive();
-extern void OS_InitThread();
-extern void OS_InitReset();
-extern void CTRDG_Init();
-extern void CARD_Init();
-extern void PM_Init();
-
-void OS_Init(void) {
- OS_InitArena();
- PXI_Init();
- OS_InitLock();
- OS_InitArenaEx();
- OS_InitIrqTable();
- OS_SetIrqStackChecker();
- OS_InitException();
- MI_Init();
- OS_InitVAlarm();
- OSi_InitVramExclusive();
- OS_InitThread();
- OS_InitReset();
- CTRDG_Init();
- CARD_Init();
- PM_Init();
-}
-