2010-12-19 11:49:58 +00:00
|
|
|
;
|
|
|
|
; unsigned char __fastcall__ toascii (unsigned char c);
|
|
|
|
; /* Convert a target specific character to ascii */
|
|
|
|
;
|
|
|
|
|
|
|
|
.export _toascii
|
|
|
|
|
|
|
|
.proc _toascii
|
|
|
|
|
|
|
|
; X must be zero on return
|
2013-05-09 13:56:54 +02:00
|
|
|
ldx #0
|
2010-12-19 11:49:58 +00:00
|
|
|
|
|
|
|
; Done!
|
2013-05-09 13:56:54 +02:00
|
|
|
rts
|
2010-12-19 11:49:58 +00:00
|
|
|
|
|
|
|
.endproc
|