2 ; Ullrich von Bassewitz, 08.08.1998
4 ; void __fastcall__ chlinexy (unsigned char x, unsigned char y, unsigned char length);
5 ; void __fastcall__ chline (unsigned char length);
8 .export _chlinexy, _chline, chlinedirect
9 .import gotoxy, cputdirect
11 .include "zeropage.inc"
16 jsr gotoxy ; Call this one, will pop params
17 pla ; Restore the length and run into _chline
21 ldx #'S' ; MouseText character
23 cpy #$FF ; Normal character display mode?
26 ldx #'-' | $80 ; Horizontal line, screen code
30 cmp #$00 ; Is the length zero?
31 beq done ; Jump if done
33 : lda tmp1 ; Screen code
34 jsr cputdirect ; Direct output