]> git.sur5r.net Git - cc65/blob - libsrc/runtime/push7.s
Don't pass mode argument to open() from _fopen().
[cc65] / libsrc / runtime / push7.s
1 ;
2 ; Ullrich von Bassewitz, 26.10.2000
3 ;
4 ; CC65 runtime: Push (int)7 onto the stack
5 ;
6
7         .export         push7
8         .import         pusha0
9
10 ; Beware: The optimizer knows about this function!
11
12 .proc   push7
13
14         lda     #7
15         jmp     pusha0
16
17 .endproc
18
19