]> git.sur5r.net Git - cc65/blob - libsrc/telemon30/print.s
Correcting spaces
[cc65] / libsrc / telemon30 / print.s
1 ;
2 ; Jede
3 ;
4 ; print (char * str);
5 ;
6 ; This function is a hack!
7 ;
8
9     .export         _print
10     .import         popax
11         .importzp       tmp1
12     .include        "telemon30.inc"
13
14 .proc   _print
15         stx tmp1
16         ldy tmp1
17         BRK_TELEMON XWSTR0
18     rts
19 .endproc
20
21