1 2 3 4 5 6 7 8 9 10
/* get_bp.s */ /* */ /* return fp in r0 */ /* */ #include <machine/asm.h> ENTRY(get_bp) mov r0, fp bx lr