]> git.sur5r.net Git - cc65/blob - libsrc/runtime/decsp8.s
Rewrite of spaspidx and staxspidx. More module splits.
[cc65] / libsrc / runtime / decsp8.s
1 ;
2 ; Ullrich von Bassewitz, 25.10.2000
3 ;
4 ; CC65 runtime: Decrement the stackpointer by 8
5 ;
6
7         .export         decsp8
8         .import         subysp
9
10 .proc   decsp8
11
12         ldy     #8
13         jmp     subysp
14
15 .endproc
16
17
18
19
20