PicoMite V6.00.02 release candidates - all versions


Author Message
toml_12953
Guru

Joined: 13/02/2015
Location: United States
Posts: 625
Posted: 02:05pm 16 Apr 2025      

  matherp said  
  Quote  This was a problem in WebMiteRP2350V6.00.02RC14 and is still a problem in RC15. When I run the logtable below, the processor reboots at about 9955.

This was a bug that I've now fixed and will be in the next version. I asked Cortana to rewrite your code in "modern" Basic and this is the result
W = 0
For X = 1 To 9
   Print X;
   For Y = 0 To 9
       Do
           Z = (10 * X + Y) * 0.1
           If Abs(10 ^ W - Z) <= 0.001 Then
               T = Int(10000 * W)
               Print Tab(6 * Y + 4); T;
               Exit Do
           End If
           W = W + 0.0001
       Loop
   Next Y
   Print
Next X
End



Thanks for spending time on this. For new programs, I write them that way myself but I have literally thousands of legacy BASIC programs. I'm pretty old so if I converted 10 programs a day, I wouldn't have time to convert them all!