wasi-libc/libc-top-half/musl/arch/microblaze/crt_arch.h
Dan Gohman 320054e84f WASI libc prototype implementation.
This incoporates pieces from musl-libc, cloudlibc, cloudabi, libpreopen,
and dlmalloc, as well as a significant amount of new code.
2019-03-27 07:59:55 -07:00

18 lines
335 B
C

__asm__(
".text \n"
".global " START " \n"
".align 2 \n"
START ": \n"
" add r19, r0, r0 \n"
" ori r5, r1, 0 \n"
"1: mfs r6, rpc \n"
".weak _DYNAMIC \n"
".hidden _DYNAMIC \n"
" addik r6, r6, _GLOBAL_OFFSET_TABLE_+8 \n"
" addik r6, r6, _DYNAMIC@GOTOFF \n"
" andi r1, r1, -8 \n"
" addik r1, r1, -8 \n"
" bri " START "_c \n"
" nop \n"
);