]> git.sur5r.net Git - cc65/blob - libsrc/runtime/incax3.s
Splitted the dec and inc modules into smaller ones
[cc65] / libsrc / runtime / incax3.s
1 ;
2 ; Ullrich von Bassewitz, 05.08.1998
3 ;
4 ; CC65 runtime: Increment ax by 3
5 ;
6
7         .export         incax3
8         .import         incaxy
9
10 .proc   incax3
11               
12         lda     #3
13         jmp     incaxy
14
15 .endproc
16