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.
12 lines
196 B
12 lines
196 B
__asm__("\
|
|
.global _start \n\
|
|
.type _start, %function \n\
|
|
_start: \n\
|
|
mr 3, 1 \n\
|
|
clrrwi 1, 1, 4 \n\
|
|
li 0, 0 \n\
|
|
stwu 1, -16(1) \n\
|
|
mtlr 0 \n\
|
|
stw 0, 0(1) \n\
|
|
bl __cstart \n\
|
|
");
|
|
|