aboutsummaryrefslogblamecommitdiff
path: root/lib/arch/arm/thread_create.s
blob: 7231c3e5223f4f05ae7abd07a97f56c266e36ded (plain) (tree)



















                                                          
# Copyright (c) 2021 Johannes Stoelp

    .arch armv7-a
    .section .text, "ax", %progbits

     # extern "C" void thread_create();
    .global thread_create
    .type   thread_create, %function
thread_create:
    .cfi_startproc
    ldr r0, [sp, #0x4]
    ldr r1, [sp]

    blx r1

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