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.
13 lines
249 B
13 lines
249 B
__asm__(
|
|
".text \n"
|
|
".global " START "\n"
|
|
".type " START ", @function\n"
|
|
START ":\n"
|
|
" move $fp, $zero\n"
|
|
" move $a0, $sp\n"
|
|
".weak _DYNAMIC\n"
|
|
".hidden _DYNAMIC\n"
|
|
" la.local $a1, _DYNAMIC\n"
|
|
" bstrins.d $sp, $zero, 3, 0\n"
|
|
" b " START "_c\n"
|
|
);
|
|
|