1
0
mirror of https://github.com/cc65/cc65.git synced 2024-08-15 05:29:09 +00:00
cc65/libsrc/telemon24/print.s

26 lines
307 B
ArmAsm

;
; Jede
;
; print (char * str);
;
; This function is a hack!
;
.export _print
.import popax
.importzp tmp1
.include "telemon24.inc"
.proc _print
jsr popax ; get buf
stx tmp1
ldy tmp1
brk
.byte $14
rts
.endproc