]> git.sur5r.net Git - cc65/blob - libsrc/runtime/pushc0.s
cfg/atari-xex.cfg: fix typo in comment
[cc65] / libsrc / runtime / pushc0.s
1 ;
2 ; Ullrich von Bassewitz, 26.10.2000
3 ;
4 ; CC65 runtime: Push (char)0 onto the stack
5 ;
6
7         .export         pushc0
8         .import         pusha
9
10 ; Beware: The optimizer knows about this function!
11
12 .proc   pushc0
13
14         lda     #0
15         jmp     pusha
16
17 .endproc
18
19