]> git.sur5r.net Git - cc65/blob - libsrc/telestrat/toascii.s
toascii.s added, doc updated, tgi_line & tgi_outtext are available
[cc65] / libsrc / telestrat / toascii.s
1 ;
2 ; char __fastcall__ toascii (char c);
3 ; /* Convert a target-specific character to ASCII. */
4 ;
5
6 .export _toascii
7
8 .proc   _toascii
9
10 ; .X must be zero, on return.
11         ldx     #>$0000
12         rts
13
14 .endproc