1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-29 10:29:30 +00:00
cc65/libsrc/runtime/incax5.s
cuz 083f0aee44 Fixed errors in the incaxn functions
git-svn-id: svn://svn.cc65.org/cc65/trunk@602 b7a2c559-68d2-44c3-8de9-860c34a00d81
2001-02-21 08:39:25 +00:00

17 lines
174 B
ArmAsm

;
; Ullrich von Bassewitz, 05.08.1998
;
; CC65 runtime: Increment ax by 5
;
.export incax5
.import incaxy
.proc incax5
ldy #5
jmp incaxy
.endproc