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.
18 lines
324 B
18 lines
324 B
__asm__(
|
|
".text \n"
|
|
".global " START " \n"
|
|
".type " START ",%function \n"
|
|
START ": \n"
|
|
" mov fp, #0 \n"
|
|
" mov lr, #0 \n"
|
|
" ldr a2, 1f \n"
|
|
" add a2, pc, a2 \n"
|
|
" mov a1, sp \n"
|
|
"2: and ip, a1, #-16 \n"
|
|
" mov sp, ip \n"
|
|
" bl " START "_c \n"
|
|
".weak _DYNAMIC \n"
|
|
".hidden _DYNAMIC \n"
|
|
".align 2 \n"
|
|
"1: .word _DYNAMIC-2b \n"
|
|
);
|
|
|