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.
10 lines
160 B
10 lines
160 B
__asm__("\
|
|
.global _start \n\
|
|
.type _start,%function \n\
|
|
_start: \n\
|
|
mov fp, #0 \n\
|
|
mov lr, #0 \n\
|
|
mov a1, sp \n\
|
|
and sp, sp, #-16 \n\
|
|
bl __cstart \n\
|
|
");
|
|
|