@ add.s @ declare add_asm as a global function so we can call it .global add_asm @ here is the definition of add_asm add_asm: add r0, r0, r1, lsl #2 mov pc, lr @ return back to the caller