1
0
mirror of https://github.com/cc65/cc65.git synced 2026-04-20 17:20:49 +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
-14
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
@@ -6,5 +6,5 @@
.export _toascii
_toascii:
ldx #$00
ldx #>$0000
rts
-16
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