]> git.sur5r.net Git - cc65/blob - libsrc/lynx/toascii.s
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / libsrc / lynx / toascii.s
1 ;
2 ; unsigned char __fastcall__ toascii (unsigned 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     #0
12
13 ; Done!
14         rts
15
16 .endproc