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