1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-08 15:29:37 +00:00

chline added

This commit is contained in:
jede 2018-04-14 22:05:03 +02:00
parent e34ef0fc17
commit 626fed88b7
2 changed files with 22 additions and 1 deletions

22
libsrc/telestrat/chline.s Normal file
View File

@ -0,0 +1,22 @@
;
; jede jede@oric.org 2018-04-17
;
; void chline (unsigned char length);
;
.export _chline
.include "telestrat.inc"
.include "zeropage.inc"
.proc _chline
sta tmp1
@loop:
lda #'-' ; Horizontal line screen code
BRK_TELEMON XWR0 ; macro send char to screen (channel 0 in telemon terms)
dec tmp1
bne @loop
rts
.endproc

View File

@ -5,7 +5,6 @@
;
.export _cputc
.include "telestrat.inc"