]> git.sur5r.net Git - cc65/blob - libsrc/telestrat/cputc.s
Fix ftell() on Apple II to return the correct value.
[cc65] / libsrc / telestrat / cputc.s
1 ; 2018-04-13, Jede (jede@oric.org)
2 ;
3
4 ; void cputc (char c);
5 ;
6
7         .export         _cputc
8
9         .include        "telestrat.inc"
10
11 .proc _cputc
12     BRK_TELEMON  XWR0       ; macro send char to screen (channel 0 in telemon terms)
13     rts
14 .endproc
15