mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-06 12:11:43 +00:00
51 lines
1,011 B
ArmAsm
51 lines
1,011 B
ArmAsm
|
.macro CLEAR_GPR_REG_ITER
|
||
|
mov r\@, #0
|
||
|
.endm
|
||
|
|
||
|
.section .text.start
|
||
|
.arm
|
||
|
.align 5
|
||
|
.global _start
|
||
|
_start:
|
||
|
/* Switch to supervisor mode, mask all interrupts, clear all flags */
|
||
|
msr cpsr_cxsf, #0xDF
|
||
|
|
||
|
/* Relocate ourselves if necessary */
|
||
|
ldr r0, =__start__
|
||
|
adr r1, _start
|
||
|
cmp r0, r1
|
||
|
bne _relocation_loop_end
|
||
|
|
||
|
ldr r2, =__bss_start__
|
||
|
sub r2, r2, r0 /* size >= 32, obviously */
|
||
|
_relocation_loop:
|
||
|
ldmia r1!, {r3-r10}
|
||
|
stmia r0!, {r3-r10}
|
||
|
subs r2, #0x20
|
||
|
bne _relocation_loop
|
||
|
|
||
|
ldr r12, =_relocation_loop_end
|
||
|
bx r12
|
||
|
|
||
|
_relocation_loop_end:
|
||
|
/* Set the stack pointer */
|
||
|
ldr sp, =0x40008000
|
||
|
mov fp, #0
|
||
|
|
||
|
/* Clear .bss */
|
||
|
ldr r0, =__bss_start__
|
||
|
mov r1, #0
|
||
|
ldr r2, =__bss_end__
|
||
|
sub r2, r2, r0
|
||
|
bl memset
|
||
|
|
||
|
/* Call global constructors */
|
||
|
bl __libc_init_array
|
||
|
|
||
|
/* Set r0 to r12 to 0 (because why not?) & call main */
|
||
|
.rept 13
|
||
|
CLEAR_GPR_REG_ITER
|
||
|
.endr
|
||
|
bl main
|
||
|
b .
|