Added toascii().

git-svn-id: svn://svn.cc65.org/cc65/trunk@4991 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
ol.sc
2011-04-22 12:14:28 +00:00
parent 2f3aa1d5d4
commit 98fdd6f792
3 changed files with 12 additions and 0 deletions

10
libsrc/apple2/toascii.s Normal file
View File

@@ -0,0 +1,10 @@
;
; unsigned char __fastcall__ toascii (unsigned char c);
; /* Convert a target specific character to ascii */
;
.export _toascii
_toascii:
ldx #$00
rts