Replaced three (logically) identical files with a single file.
This commit is contained in:
parent
c8d6ca908d
commit
bd9b4ef60c
3 changed files with 1 additions and 31 deletions
|
@ -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
|
|
@ -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
|
Loading…
Add table
Reference in a new issue