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
310 B
18 lines
310 B
|
10 years ago
|
__asm__(
|
||
|
|
".text\n"
|
||
|
|
".global " START "\n"
|
||
|
|
".type " START ", %function\n"
|
||
|
|
START ":\n"
|
||
|
|
" lgr %r2, %r15\n"
|
||
|
|
" larl %r3, 1f\n"
|
||
|
|
" agf %r3, 0(%r3)\n"
|
||
|
|
" aghi %r15, -160\n"
|
||
|
|
" lghi %r0, 0\n"
|
||
|
|
" stg %r0, 0(%r15)\n"
|
||
|
|
" jg " START "_c\n"
|
||
|
|
" .align 8\n"
|
||
|
|
".weak _DYNAMIC\n"
|
||
|
|
".hidden _DYNAMIC\n"
|
||
|
|
"1: .long _DYNAMIC-.\n"
|
||
|
|
);
|