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