incax1.s



;
; Ullrich von Bassewitz, 05.08.1998
;
; CC65 runtime: Increment ax by 1
;

       	.export	       	incax1

	.macpack	generic

.proc	incax1

.ifpc02
	ina	   		; 65C02 version
	bne	@L9
.else
      	add	#1
      	bcc   	@L9
.endif
    	inx
@L9:	rts

.endproc



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