2004-03-13 21:42:44 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 08.08.1998
|
|
|
|
;
|
|
|
|
; void chlinexy (unsigned char x, unsigned char y, unsigned char length);
|
|
|
|
; void chline (unsigned char length);
|
|
|
|
;
|
|
|
|
|
|
|
|
.export _chlinexy, _chline, chlinedirect
|
|
|
|
.import popa, _gotoxy, cputdirect
|
|
|
|
.importzp tmp1
|
|
|
|
|
|
|
|
.include "../apple2/apple2.inc"
|
|
|
|
|
|
|
|
_chlinexy:
|
|
|
|
pha ; Save the length
|
|
|
|
jsr popa ; Get y
|
|
|
|
jsr _gotoxy ; Call this one, will pop params
|
|
|
|
pla ; Restore the length and run into _chline
|
|
|
|
|
|
|
|
_chline:
|
|
|
|
ldx #'S' ; MouseText character
|
|
|
|
ldy INVFLG
|
|
|
|
cpy #$FF ; Normal character display mode?
|
|
|
|
beq chlinedirect
|
|
|
|
ldx #'-' | $80 ; Horizontal line, screen code
|
|
|
|
|
|
|
|
chlinedirect:
|
|
|
|
cmp #$00 ; Is the length zero?
|
2005-01-06 12:26:47 +00:00
|
|
|
beq done ; Jump if done
|
2004-03-13 21:42:44 +00:00
|
|
|
sta tmp1
|
2005-01-06 12:26:47 +00:00
|
|
|
: txa ; Screen code
|
2004-03-13 21:42:44 +00:00
|
|
|
jsr cputdirect ; Direct output
|
|
|
|
dec tmp1
|
2005-01-06 12:26:47 +00:00
|
|
|
bne :-
|
|
|
|
done: rts
|
2004-03-13 21:42:44 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|