Atmosphere/fusee/fusee-secondary/src/start.s

55 lines
1.2 KiB
ArmAsm
Raw Normal View History

2018-03-14 20:14:02 +00:00
.macro CLEAR_GPR_REG_ITER
mov r\@, #0
.endm
.section .text.start, "ax", %progbits
2018-03-14 20:14:02 +00:00
.arm
.align 5
.global _start
.type _start, %function
2018-03-14 20:14:02 +00:00
_start:
/* Switch to system mode, mask all interrupts, clear all flags */
2018-03-14 20:14:02 +00:00
msr cpsr_cxsf, #0xDF
/* Relocate ourselves if necessary */
ldr r2, =__start__
adr r3, _start
cmp r2, r3
2018-03-14 20:14:02 +00:00
bne _relocation_loop_end
ldr r4, =__bss_start__
sub r4, r4, r2 /* size >= 32, obviously, and we've declared 32-byte-alignment */
2018-03-14 20:14:02 +00:00
_relocation_loop:
ldmia r3!, {r5-r12}
stmia r2!, {r5-r12}
subs r4, #0x20
2018-03-14 20:14:02 +00:00
bne _relocation_loop
ldr r12, =_relocation_loop_end
bx r12
_relocation_loop_end:
/* Set the stack pointer */
ldr sp, =__stack_top__
mov fp, #0
bl __program_init
2018-03-14 20:14:02 +00:00
/* Set r0 to r12 to 0 (for debugging) & call main */
2018-03-14 20:14:02 +00:00
.rept 13
CLEAR_GPR_REG_ITER
.endr
ldr r0, =__program_argc
ldr r1, =__program_argv
ldr lr, =__program_exit
b main
/* No need to include this in normal programs: */
.section .chainloader.text.start, "ax", %progbits
.arm
.align 5
.global relocate_and_chainload
.type relocate_and_chainload, %function
relocate_and_chainload:
ldr sp, =__stack_top__
b relocate_and_chainload_main