You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
315 B
ArmAsm
25 lines
315 B
ArmAsm
12 years ago
|
;
|
||
|
; Ullrich von Bassewitz, 05.08.1998
|
||
|
;
|
||
|
; CC65 runtime: Increment ax by 1
|
||
|
;
|
||
|
|
||
|
.export incax1
|
||
|
|
||
|
.macpack generic
|
||
|
.macpack cpu
|
||
|
|
||
|
.proc incax1
|
||
|
|
||
|
.if (.cpu .bitand ::CPU_ISET_65SC02)
|
||
|
ina ; 65C02 version
|
||
|
bne @L9
|
||
|
.else
|
||
|
add #1
|
||
|
bcc @L9
|
||
|
.endif
|
||
|
inx
|
||
|
@L9: rts
|
||
|
|
||
|
.endproc
|