1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-01 08:29:37 +00:00
cc65/libsrc/runtime/incax7.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 7
;
.export incax7
.import incaxy
.proc incax7
ldy #7
jmp incaxy
.endproc