For - next simulation problem

dennis

Member
Using v 5.1 and the 28x1 I cant get a for next loop to simulate as the code seems to stop at next b1.

<code><pre><font size=2 face='Courier'>'for next simulator test
main:
for b1=1to 10
sertxd(#b1,13,10)
next b1 </font></pre></code>

Is this my mistake os should I make a bug report ?

 
 

MORA99

Senior Member
are you missing a space between b1=1 and to ?
and I dont think you need/should have that b1 after next, just next will do

Edited by - MORA99 on 06/05/2007 18:13:55
 

dennis

Member
I dont think that is the problem as the code passed the syntax test but this version will not run for me either.
<code><pre><font size=2 face='Courier'>
'for next simulator test
main:
for b1 = 1 to 10
sertxd(#b1,13,10)
next </font></pre></code>

Do you have similar results ?

 
 

BeanieBots

Moderator
Doesn't work for me either.
Just hangs on the 'next' line with b0 at a value of 1.

This seems to have happened since upgrading to version 5.1.0
 

hippy

Technical Support
Staff member
Also fails for an 18X so it looks like a bug which has arrived with 5.1.0
 
Top