1#include <machine/asm.h> 2ENTRY(_ctx_start) 3 mov lr, pc 4 mov pc, r4 5 mov r0, r5 6 bl _C_LABEL(ctx_done) 7 bl _C_LABEL(abort) 8END(_ctx_start) 9 10 .section .note.GNU-stack,"",%progbits 11