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