]> git.sur5r.net Git - cc65/blob - libsrc/runtime/incsp3.s
cfg/atari-xex.cfg: fix typo in comment
[cc65] / libsrc / runtime / incsp3.s
1 ;
2 ; Ullrich von Bassewitz, 25.10.2000
3 ;
4 ; CC65 runtime: Increment the stackpointer by 3
5 ;
6
7         .export         incsp3
8         .import         addysp
9
10 .proc   incsp3
11
12         ldy     #3
13         jmp     addysp
14
15 .endproc
16
17
18
19
20