mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
11 lines
179 B
ArmAsm
11 lines
179 B
ArmAsm
#include <machine/asm.h>
|
|
|
|
ENTRY(_ctx_start)
|
|
mov lr, pc
|
|
mov pc, r4
|
|
mov r0, r5
|
|
bl _C_LABEL(ctx_done)
|
|
bl _C_LABEL(abort)
|
|
END(_ctx_start)
|
|
|
|
.section .note.GNU-stack,"",%progbits
|