Patch by Greg King: Added a TGI text translator and a palette graphics driver

to Atmos library.


git-svn-id: svn://svn.cc65.org/cc65/trunk@5958 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz
2013-01-07 19:37:18 +00:00
parent 0a5bf82797
commit a302df3cc1
3 changed files with 442 additions and 1 deletions

14
libsrc/atmos/toascii.s Normal file
View File

@@ -0,0 +1,14 @@
;
; char __fastcall__ toascii (char c);
; /* Convert a target-specific character to ASCII. */
;
.export _toascii
.proc _toascii
; .X must be zero, on return.
ldx #>0
rts
.endproc