1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-17 00:29:31 +00:00

Remove toascii.s

This commit is contained in:
jede 2017-10-23 20:52:22 +02:00
parent 0517a2c2ab
commit 1403d797f0

View File

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