1;
2; Ullrich von Bassewitz, 26.10.2000
3;
4; CC65 runtime: Push (int)2 onto the stack
5;
6
7        .export         push2
8        .import         pusha0
9
10; Beware: The optimizer knows about this function!
11
12.proc   push2
13
14        lda     #2
15        jmp     pusha0
16
17.endproc
18
19
20