2 ; Ullrich von Bassewitz, 08.08.1998
4 ; void cvlinexy (unsigned char x, unsigned char y, unsigned char length);
5 ; void cvline (unsigned char length);
8 .export _cvlinexy, _cvline
9 .import popa, _gotoxy, putchar, newline
12 .include "creativision.inc"
17 jsr _gotoxy ; Call this one, will pop params
18 pla ; Restore the length and run into _cvline
21 cmp #0 ; Is the length zero?
24 L1: lda #CH_VLINE ; Vertical bar
25 jsr putchar ; Write, no cursor advance
26 jsr newline ; Advance cursor to next line