aboutsummaryrefslogblamecommitdiff
path: root/lib/arch/riscv64/thread_create.s
blob: 68c09cde8cb97daed66981603d62a23f49751a2c (plain) (tree)


















                                                          
# Copyright (c) 2021 Johannes Stoelp

    .section .text, "ax", @progbits

     # extern "C" void thread_create();
    .global thread_create
    .type   thread_create, @function
thread_create:
    .cfi_startproc
    ld a0, 8(sp)
    ld x5, 0(sp)

    jalr x5

    # FIXME: no return from thread after user fn finished.
1:
    j 1b
    .cfi_endproc
    .size thread_create, .-thread_create