Fixed several aspects of the GEOS CONIO implementation:

- cputc was drawing at the wrong position, therefore one line had to be removed as a workaround.
- chline, cvline were drawing one pixel to large lines.
- cclear was drawing an in both directions one pixel to big rect.
- the cursor was drawn at wrong times at wrong places in a wrong size.

git-svn-id: svn://svn.cc65.org/cc65/trunk@5874 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
ol.sc
2012-10-23 19:42:57 +00:00
parent 9930379665
commit 46f1085e2d
11 changed files with 59 additions and 80 deletions

View File

@@ -7,25 +7,25 @@
; unsigned char cgetc (void);
.export _cgetc
.import update_cursor
.importzp cursor_x, cursor_y, cursor_flag
.import cursor
.importzp cursor_x, cursor_y
.include "jumptab.inc"
.include "geossym.inc"
_cgetc:
; show cursor if needed
lda cursor_flag
lda cursor
beq L0
jsr update_cursor
; prepare cursor
lda #7
jsr InitTextPrompt
lda cursor_x
ldx cursor_x+1
sta stringX
stx stringX+1
lda cursor_y
sec
sbc curHeight
sta stringY
jsr PromptOn
@@ -33,7 +33,15 @@ L0: jsr GetNextChar
tax
beq L0
pha
; from 'The Hitchhiker's Guide To GEOS'
php
sei
jsr PromptOff
lda #0
sta alphaFlag
plp
pla
ldx #0
rts