mirror of
https://git.musl-libc.org/git/musl
synced 2025-02-13 08:44:08 +03:00
15 lines
254 B
C
15 lines
254 B
C
![]() |
__asm__(
|
||
|
".text\n"
|
||
|
".weak _DYNAMIC \n"
|
||
|
".hidden _DYNAMIC \n"
|
||
|
".global " START "\n"
|
||
|
START ":\n"
|
||
|
" suba.l %fp,%fp \n"
|
||
|
" movea.l %sp,%a0 \n"
|
||
|
" lea _DYNAMIC-.-8,%a1 \n"
|
||
|
" pea (%pc,%a1) \n"
|
||
|
" pea (%a0) \n"
|
||
|
" lea " START "_c-.-8,%a1 \n"
|
||
|
" jsr (%pc,%a1) \n"
|
||
|
);
|