]> git.sur5r.net Git - cc65/blob - libsrc/runtime/pushc2.s
lseek: Return EINVAL if new position is less than 0 or greater than 2^24 - 1.
[cc65] / libsrc / runtime / pushc2.s
1 ;
2 ; Ullrich von Bassewitz, 26.10.2000
3 ;
4 ; CC65 runtime: Push (char)2 onto the stack
5 ;
6
7         .export         pushc2
8         .import         pusha
9
10 ; Beware: The optimizer knows about this function!
11
12 .proc   pushc2
13
14         lda     #2
15         jmp     pusha
16
17 .endproc
18
19