summaryrefslogtreecommitdiff
path: root/arm9/asm/OS_init.s
diff options
context:
space:
mode:
authorRevo <projectrevotpp@hotmail.com>2020-05-01 16:04:18 -0400
committerGitHub <noreply@github.com>2020-05-01 16:04:18 -0400
commitce558d0870e8b8ceb626ee8a6f165e8be9869ede (patch)
treea002ab92671fdf9736179b9b1d818b6da9c398d2 /arm9/asm/OS_init.s
parentdb2a8afd2f3c5e2a38083a3dc47d65e7848f0fd2 (diff)
parent527b257015fa32ac4007b1d7e9198ac37d8e1542 (diff)
Merge pull request #52 from red031000/master
remove include/nitro and shift everything to arm9/lib
Diffstat (limited to 'arm9/asm/OS_init.s')
-rw-r--r--arm9/asm/OS_init.s27
1 files changed, 0 insertions, 27 deletions
diff --git a/arm9/asm/OS_init.s b/arm9/asm/OS_init.s
deleted file mode 100644
index 8ee35fe0..00000000
--- a/arm9/asm/OS_init.s
+++ /dev/null
@@ -1,27 +0,0 @@
- .include "asm/macros.inc"
- .include "global.inc"
-
- .text
-
- arm_func_start OS_Init
-OS_Init: ; 0x020CC1B4
- stmdb sp!, {lr}
- sub sp, sp, #0x4
- bl OS_InitArena
- bl PXI_Init
- bl OS_InitLock
- bl OS_InitArenaEx
- bl OS_InitIrqTable
- bl OS_SetIrqStackChecker
- bl OS_InitException
- bl MI_Init
- bl OS_InitVAlarm
- bl OSi_InitVramExclusive
- bl OS_InitThread
- bl OS_InitReset
- bl CTRDG_Init
- bl CARD_Init
- bl PM_Init
- add sp, sp, #0x4
- ldmia sp!, {lr}
- bx lr