1
0
mirror of https://github.com/cc65/cc65.git synced 2024-08-06 04:29:04 +00:00
cc65/libsrc/telestrat/print.s

17 lines
258 B
ArmAsm
Raw Normal View History

; jede jede@oric.org 2017-01-22
; void print (char * str);
.export _print
.import popax
.importzp tmp1
.include "telestrat.inc"
.proc _print
stx tmp1
ldy tmp1
BRK_TELEMON XWSTR0
rts
.endproc