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
170 B
12 lines
170 B
|
13 years ago
|
__asm__("\
|
||
|
|
.global _start \n\
|
||
|
|
.align 2 \n\
|
||
|
|
_start: \n\
|
||
|
|
add r19, r0, r0 \n\
|
||
|
|
ori r5, r1, 0 \n\
|
||
|
|
andi r1, r1, -8 \n\
|
||
|
|
addik r1, r1, -8 \n\
|
||
|
|
bri __cstart \n\
|
||
|
|
nop \n\
|
||
|
|
");
|