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