Can someone explain me this ?
I have to know what those lines are doing .
I know already that it's something with video memory, and this
is changing text and backgroud color, also &HB800 is something with video ram?
But what does
those lines do.
And if someone help, thanks to him.
I have to know what those lines are doing .
I know already that it's something with video memory, and this
Code:
POKE (i% - 1) * 160 + j% + 1, 128 + 14
But what does
Code:
FOR j% = 0 TO 158 STEP 2
POKE (i% - 1) * 160 + j%, ASC(MID$(rida(i%), j% / 2 + 1, 1))
And if someone help, thanks to him.
Code:
DEF SEG = &HB800
FOR i% = 1 TO 20
FOR j% = 0 TO 158 STEP 2
POKE (i% - 1) * 160 + j%, ASC(MID$(rida(i%), j% / 2 + 1, 1))
POKE (i% - 1) * 160 + j% + 1, 128 + 14
NEXT j%
NEXT i%
END