]> git.sur5r.net Git - cc65/blob - libsrc/runtime/return0.s
cfg/atari-xex.cfg: fix typo in comment
[cc65] / libsrc / runtime / return0.s
1 ;
2 ; Ullrich von Bassewitz, 25.10.2000
3 ;
4 ; CC65 runtime: Return 0 in a/x
5 ;
6
7         .export         return0
8
9 .proc   return0
10
11         lda     #0
12         tax
13         rts
14
15 .endproc
16
17
18
19
20