I did a test.
fill the entire screen with "B".
nxtbasic is slow.
when the screen is scrolled to the right with the "E" key, the top 5 lines flicker. I fixed this with "sleep 1" in the basic of the x16.
how can I get rid of the flickering here in nxtbasic?
thanks.
greeting
Code: Select all
SCREEN 128
gosub ascii
z=255
StartEdit:
Loop:
Key$=GET
if Key$="Q" then GOSUB links
if Key$="E" then GOSUB rechts
Goto loop
end
links:
print " LINKS"
return
rechts:
z=z-1
if z=-1 then
z=255
u=u-1
Poke $9F38,u
endif
Poke $9F37,z
return
ascii:
For d= 1 to 8000
VPoke 1,$b000+d+1,2
VPoke 1,$b000+d,0*16+2
next d
return