ytm Wrote:I have a few questions - the documentation is not clear/explicit on those:
1. If I start the second displaylist (VREG_DL2STROBE) what happens at the end of the frame? Do we get back to the beginning of DL1 or the beginning of DL2? If DL2 - how do I get back to DL1?
I admit this might not be completely clear so I'll update the docs shortly.
OTOH it is quite easy to verify with a few lines of VBASIC:
Code:
10 RACER0:RACER2
100 VCFG 0,0,1
110 VWAIT 130,0
120 VMOV $20,0:VMOV$21,0
130 VDELAYV 10
140 VMOV$20,14:VMOV$21,6
150 VMOV$41,0:VMOV$42,1:REM DL2 $0100
160 VMOV$43,0:REM DL2STROBE
170 REM VEND NOT NEEDED HERE
200 VCFG 0,$100,1
210 VWAIT 150,0
220 VMOV $20,0:VMOV$21,0
230 VDELAYV 10
240 VMOV$20,14:VMOV$21,6
999 VEND
1000 DLON
1999 END
READY.