1/* abs.s 4.1 83/06/27 */ 2 3/* abs - int absolute value */ 4 5#include "DEFS.h" 6 7ENTRY(abs) 8 movl 4(ap),r0 9 bgeq 1f 10 mnegl r0,r0 111: 12 ret 13