1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-18 07:29:36 +00:00

Replaced three (logically) identical files with a single file.

This commit is contained in:
Oliver Schmidt 2017-10-23 18:35:06 +02:00
parent c8d6ca908d
commit bd9b4ef60c
3 changed files with 1 additions and 31 deletions

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

View File

@ -6,5 +6,5 @@
.export _toascii
_toascii:
ldx #$00
ldx #>$0000
rts

View File

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