diff options
Diffstat (limited to 'arm9/asm/MI_init.s')
-rw-r--r-- | arm9/asm/MI_init.s | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/arm9/asm/MI_init.s b/arm9/asm/MI_init.s new file mode 100644 index 00000000..282dde3b --- /dev/null +++ b/arm9/asm/MI_init.s @@ -0,0 +1,17 @@ + .include "asm/macros.inc" + .include "global.inc" + + .text + + arm_func_start MI_Init +MI_Init: ; 0x020CE648 + stmdb sp!, {lr} + sub sp, sp, #0x4 + mov r0, #0x3 + bl MI_SetWramBank + mov r0, #0x0 + bl MI_StopDma + add sp, sp, #0x4 + ldmfd sp!, {lr} + bx lr + |