]> git.sur5r.net Git - cc65/blob - libsrc/runtime/pushaff.s
cfg/atari-xex.cfg: fix typo in comment
[cc65] / libsrc / runtime / pushaff.s
1 ;
2 ; Ullrich von Bassewitz, 26.10.2000
3 ;
4 ; CC65 runtime: Push a extended with FF onto the stack
5 ;
6
7         .export         pushaFF
8         .import         pushax
9
10 ; Beware: The optimizer knows about this function!
11
12 .proc   pushaFF
13
14         ldx     #$FF
15         jmp     pushax
16
17 .endproc
18
19
20