]> git.sur5r.net Git - cc65/blobdiff - libsrc/geos-common/conio/clrscr.s
Fixed several aspects of the GEOS CONIO implementation:
[cc65] / libsrc / geos-common / conio / clrscr.s
index e8f30b7000d6a01ee6b22960dd5262493366f239..72fcb40ff3cd21740fbbdd8aa19eabbb029a36a7 100644 (file)
@@ -14,8 +14,6 @@
            .include "const.inc"
 
 _clrscr:
-       lda #ST_WR_FORE | ST_WR_BACK
-       sta dispBufferOn
        lda curPattern          ; save current pattern
        pha
        lda #0                  ; set pattern to clear
@@ -25,7 +23,6 @@ _clrscr:
        stx r3H
        stx r2L
        stx cursor_c
-       inx
        stx cursor_r
        jsr fixcursor           ; home cursor
 .ifdef __GEOS_CBM__