PEEK and POKE FLOAT var! 32 bit


Author Message
TassyJim

Guru

Joined: 07/08/2011
Location: Australia
Posts: 6487
Posted: 07:31am 22 Jun 2025      

One interesting issue I found was
2^exponent

In the third last line it was overflowing with large numbers even though the result was going into a float.
I changed it to
2.0^exponent

to force a float and all was well
I ended up using a combination of this code and the FoTS code

Jim