Danke für deinen Beitrag. Entschuldigung, dass ich mich jetzt erst melde. War überrschend in der Zwischenzeit außer Haus, konnte daher hier nicht reinschauen.

Das Ganze scheint nicht ganz so einfach. Hier ein Ausschnitt aus der Bascom-Hilfe, der wahrscheinlich zeigt, dass das Zusammenfügen wohl aud unüberwindbare Schwierigkeiten stoßen wird:

Code:
Floating point (ASM code used is supplied by Jack Tidwell)
Single numbers conforming to the IEEE binary floating point standard. 

An eight bit exponent and 24 bit mantissa are supported.
Using four bytes the format is shown below:

31 30________23 22______________________________0
s    exponent     mantissa

The exponent is biased by 128. Above 128 are positive exponents and
below are negative.  The sign bit is 0 for positive numbers and 1 for
negative. The mantissa is stored in hidden bit normalized format so
that 24 bits of precision can be obtained.
Wolfgang