mirror of
https://github.com/cc65/cc65.git
synced 2024-11-04 17:04:58 +00:00
16 lines
253 B
ArmAsm
16 lines
253 B
ArmAsm
; 2018-04-13, Jede (jede@oric.org)
|
|
;
|
|
|
|
; void cputc (char c);
|
|
;
|
|
|
|
.export _cputc
|
|
|
|
.include "telestrat.inc"
|
|
|
|
.proc _cputc
|
|
BRK_TELEMON XWR0 ; macro send char to screen (channel 0 in telemon terms)
|
|
rts
|
|
.endproc
|
|
|