1#include <machine/asm.h> 2 3ENTRY(_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) 9END(_ctx_start) 10 11 .section .note.GNU-stack,"",%progbits 12