I could use my own PEEK_FLOAT from DJ Toolkit, but I'm trying to do this without external toolkits, hence my need for a SuperBASIC function to do the needful.
I one doesn't exist, I will have to write one myself, but I'm lazy!!!

Code: Select all
DEFine PROCedure floatConversion(a$)
LOCal FP, ...
:
REMark a$ consists of the 6 bytes that make up a QL float.
:
FP = ...: REMark Convert a$ to a float number, here, somehow!
RETurn FP
END DEFine floatConversion
Norm.,