1
0
mirror of https://github.com/cc65/cc65.git synced 2024-10-01 15:54:59 +00:00

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

View File

@ -104,6 +104,7 @@ S_OBJS= _scrsize.o \
systime.o \
sysuname.o \
tgi_mode_table.o\
toascii.o \
vtabz.o \
wherex.o \
wherey.o \

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

View File

@ -108,6 +108,7 @@ S_OBJS= _scrsize.o \
sysuname.o \
textframe.o \
tgi_mode_table.o\
toascii.o \
videomode.o \
vtabz.o \
wherex.o \