2000-10-31 18:42:47 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 05.08.1998
|
|
|
|
;
|
|
|
|
; CC65 runtime: Increment ax by 7
|
|
|
|
;
|
|
|
|
|
2013-05-09 13:56:54 +02:00
|
|
|
.export incax7
|
|
|
|
.import incaxy
|
2000-10-31 18:42:47 +00:00
|
|
|
|
2013-05-09 13:56:54 +02:00
|
|
|
.proc incax7
|
2000-10-31 18:42:47 +00:00
|
|
|
|
2013-05-09 13:56:54 +02:00
|
|
|
ldy #7
|
|
|
|
jmp incaxy
|
2000-10-31 18:42:47 +00:00
|
|
|
|
|
|
|
.endproc
|
|
|
|
|