+++ /dev/null
-;
-; unsigned char __fastcall__ toascii (unsigned char c);
-; /* Convert a target specific character to ascii */
-;
-
- .export _toascii
-
-_toascii:
- ldx #$00
- rts
+++ /dev/null
-;
-; 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
--- /dev/null
+;
+; unsigned char __fastcall__ toascii (unsigned char c);
+; /* Convert a target specific character to ascii */
+;
+
+ .export _toascii
+
+_toascii:
+ ldx #>$0000
+ rts
+++ /dev/null
-;
-; 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