]> git.sur5r.net Git - cc65/blob - libsrc/atmos/toascii.s
Adjusted C declarations to the changed static driver names.
[cc65] / libsrc / atmos / 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     #>0
12         rts
13
14 .endproc