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.
18 lines
250 B
ArmAsm
18 lines
250 B
ArmAsm
12 years ago
|
;
|
||
|
; Ullrich von Bassewitz, 05.08.1998
|
||
|
;
|
||
|
; CC65 runtime: Increment ax by valie in y
|
||
|
;
|
||
|
|
||
|
.export incaxy, incax4
|
||
|
.importzp tmp1
|
||
|
.macpack generic
|
||
|
|
||
|
incax4: ldy #4
|
||
|
incaxy: sty tmp1
|
||
|
add tmp1
|
||
|
bcc @L9
|
||
|
inx
|
||
|
@L9: rts
|
||
|
|