Need previous PICAXE program for DO LOOP!

mezenberg

New Member
I have tried numerous times to run this code:

do
Val = Val + 1
gosub Display_Current_Runs
loop while Mux1 = 1

or

do while Mux1 = 1
Val = Val + 1
gosub Display_Current_Runs
loop

the compiler keeps coming up with "Error: Mistake in this line", refering to the do line.

Is this the same bug as reported? and if so, where can I download a previous version of this program to fix the problem?

Thanks & Regards
Eddy
 
Top