diff options
author | red031000 <rubenru09@aol.com> | 2020-06-05 21:46:12 +0100 |
---|---|---|
committer | red031000 <rubenru09@aol.com> | 2020-06-05 21:46:12 +0100 |
commit | dcf19fc6e6480520c6390594e9222d73fe8b2747 (patch) | |
tree | c4d71c5c59fea8a128fe77c5a3b1cd8d63179a63 /arm7/asm/OS_terminate_proc.s | |
parent | cae6ef601c8d2892c078eb77327e4552f3c8bf64 (diff) |
split more arm7 stuffs
Diffstat (limited to 'arm7/asm/OS_terminate_proc.s')
-rw-r--r-- | arm7/asm/OS_terminate_proc.s | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/arm7/asm/OS_terminate_proc.s b/arm7/asm/OS_terminate_proc.s new file mode 100644 index 00000000..08b79c9a --- /dev/null +++ b/arm7/asm/OS_terminate_proc.s @@ -0,0 +1,15 @@ + .include "asm/macros.inc" + .include "global.inc" + + .text + + arm_func_start OS_Terminate +OS_Terminate: ; 0x037FB1F0 + stmfd sp!, {lr} + sub sp, sp, #4 + mov r0, #0 + bl CTRDG_VibPulseEdgeUpdate +_037FB200: + bl OS_DisableInterrupts + bl FUN_037F8530 + b _037FB200 |