blob: df3a958a8084c21b93e632125111aa1e05b414a9 (
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 t0, 0(sp)
jalr t0
# FIXME: no return from thread after user fn finished.
1:
j 1b
.cfi_endproc
.size thread_create, .-thread_create
|