Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/lib/libc/arm/gen/_ctx_start.S
39534 views
1
#include <machine/asm.h>
2
3
ENTRY(_ctx_start)
4
mov lr, pc
5
mov pc, r4
6
mov r0, r5
7
bl _C_LABEL(ctx_done)
8
bl _C_LABEL(abort)
9
END(_ctx_start)
10
11
.section .note.GNU-stack,"",%progbits
12
13