@ abs.s /* function to find the absolute value of a number */ .global abs abs: cmp r0, #0 mvnlt r1, r0 addlt r0, r1, #1 mov pc, lr