Hi,
I am currently coming back to MSX basic and yesterday, I was testing the speed of the COPY function with xbasic (I love it ) on BlueMSX.
The test program is that one :
5 POKE &HFBB0,1
10 SCREEN 8 : DEFINT A-Z
20 SET PAGE 1,1
30 _TURBO ON
40 FOR I=0 TO 255
50 LINE (I,0)-(I,211),INT(RND(1)*15)
60 NEXT I
70 SET PAGE 0,0
71 FOR X = 1 TO 200
80 COPY (0,0)-(128,130),1 TO (INT(RND(1)*255),INT(RND(1)*211)),0
90 NEXT X
110 STOP
(ugly but it's not the matter )
What I don't understand is that the test runs faster with screen 8 than with screen 5.
Any idea somebody ?
Login or register to post comments