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