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