diff options
author | Revo <projectrevotpp@hotmail.com> | 2020-06-02 12:26:17 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-02 12:26:17 -0400 |
commit | 176340dc54ddb0819390d492dbb88811e2dc5827 (patch) | |
tree | 5116c285b5e72d29b9dea43538513e50b3c9c1f7 /arm7/asm/OS_init.s | |
parent | 79f9721132190ae0532128c8b2094b43361b9edd (diff) | |
parent | a506ea6dd95857aa32581aaf04434495ee8bc446 (diff) |
Merge pull request #135 from red031000/master
setup arm7 compilation, OS_init (arm7)
Diffstat (limited to 'arm7/asm/OS_init.s')
-rw-r--r-- | arm7/asm/OS_init.s | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/arm7/asm/OS_init.s b/arm7/asm/OS_init.s deleted file mode 100644 index d0e471bb..00000000 --- a/arm7/asm/OS_init.s +++ /dev/null @@ -1,21 +0,0 @@ - .include "asm/macros.inc" - .include "global.inc" - - .text - - arm_func_start OS_Init -OS_Init: ; 0x037F9B84 - stmfd sp!, {lr} - sub sp, sp, #4 - bl OS_InitArena - bl PXI_Init - bl OS_InitLock - bl OS_InitIrqTable - bl OS_InitTick - bl OS_InitAlarm - bl OS_InitThread - bl OS_InitReset - bl CTRDG_Init - add sp, sp, #4 - ldmia sp!, {lr} - bx lr |