]> git.sur5r.net Git - cc65/blob - libsrc/telestrat/print.s
Merge telemon24 and telemon30 into telestrat target.
[cc65] / libsrc / telestrat / print.s
1 ; jede jede@oric.org 2017-01-22
2
3 ; void print (char * str);
4     .export         _print
5     .import         popax
6     .importzp       tmp1
7     .include        "telestrat.inc"
8
9 .proc   _print
10     stx tmp1
11     ldy tmp1
12     BRK_TELEMON XWSTR0
13     rts
14 .endproc
15
16