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.
14 lines
181 B
14 lines
181 B
|
15 years ago
|
.global _start
|
||
|
|
_start:
|
||
|
|
mov fp,#0
|
||
|
|
mov lr,#0
|
||
|
|
ldr a2,[sp],#4
|
||
|
|
mov a3,sp
|
||
|
|
mov a4,#0
|
||
|
|
str fp,[sp,#-4]!
|
||
|
|
str a1,[sp,#-4]!
|
||
|
|
str fp,[sp,#-4]!
|
||
|
|
ldr a1,=main
|
||
|
|
bl __libc_start_main
|
||
|
|
1: b 1b
|