]> git.sur5r.net Git - cc65/blob - libsrc/runtime/incax7.s
Made the code that logs indirect-goto referals be a little more efficient.
[cc65] / libsrc / runtime / incax7.s
1 ;
2 ; Ullrich von Bassewitz, 05.08.1998
3 ;
4 ; CC65 runtime: Increment ax by 7
5 ;
6
7         .export         incax7
8         .import         incaxy
9
10 .proc   incax7
11
12         ldy     #7
13         jmp     incaxy
14
15 .endproc
16