when I scroll the screen right and left with R/T with basic
then the graphic shakes in the first two zeilen ( not visible in the photo).
How can I eliminate this please?
Is there a sync for that...?
I set it to -mhz 24.
Code: Select all
SCREEN $80
GOSUB SCRFULL
START:
GET A$
B=ASC(A$)
IF B=88 THEN GOTO WEITER
IF B=82 THEN GOSUB SCRLINKS
IF B=84 THEN GOSUB SCRRECHTS
GOTO START
WEITER:
END
SCRFULL:
FOR K=0 TO 128*40 STEP 2
VPOKE 1,$B000+K,2
VPOKE 1,$B000+K-1,0*16+2
NEXT K
RETURN
SCRRECHTS:
I=(I-1) AND $FF
IF I=255 THEN U=(U-1) AND $FF
POKE $9F38,U
POKE $9F37,I
RETURN
SCRLINKS:
I=(I+1) AND $FF
IF I=0 THEN U=(U+1) AND $FF
POKE $9F38,U
POKE $9F37,I
RETURN
greeting