Adding files for telemon30

This commit is contained in:
jede
2016-12-14 21:22:10 +01:00
parent bc94d53514
commit 252e4afb9c
36 changed files with 1899 additions and 55 deletions

21
libsrc/telemon30/print.s Normal file
View File

@@ -0,0 +1,21 @@
;
; Jede
;
; print (char * str);
;
; This function is a hack!
;
.export _print
.import popax
.importzp tmp1
.include "telemon30.inc"
.proc _print
stx tmp1
ldy tmp1
BRK_TELEMON XWSTR0
rts
.endproc