abs.s



;
; Ullrich von Bassewitz, 17.06.1998
;
; int abs (int x);
;

	.export		_abs
	.import		negax

_abs:	dex
	inx     	     	; test hi byte
	bpl	L1
	jmp	negax	     	; Negate if negative
L1:	rts





Valid HTML 4.0! abs.s.html; generated on Sat Oct 13 22:41:33 2001 by ca65html
uz@cc65.org