mirror of https://git.musl-libc.org/git/musl
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
224 B
16 lines
224 B
.weak _init
|
|
.weak _fini
|
|
.global _start
|
|
_start:
|
|
mov fp,#0
|
|
mov lr,#0
|
|
ldr a2,[sp],#4
|
|
mov a3,sp
|
|
ldr a4,=_fini
|
|
str fp,[sp,#-4]!
|
|
str a1,[sp,#-4]!
|
|
str a4,[sp,#-4]!
|
|
ldr a4,=_init
|
|
ldr a1,=main
|
|
bl __libc_start_main
|
|
1: b 1b
|
|
|