]> git.sur5r.net Git - cc65/blob - libsrc/runtime/push6.s
Made the code that logs indirect-goto referals be a little more efficient.
[cc65] / libsrc / runtime / push6.s
1 ;
2 ; Ullrich von Bassewitz, 26.10.2000
3 ;
4 ; CC65 runtime: Push (int)6 onto the stack
5 ;
6
7         .export         push6
8         .import         pusha0
9
10 ; Beware: The optimizer knows about this function!
11
12 .proc   push6
13
14         lda     #6
15         jmp     pusha0
16
17 .endproc
18
19