[comp.sys.atari.st] floating-point format

sandra@utah-cs.UUCP (Sandra J Loosemore) (10/28/87)

While in the process of trying to find out why my Lisp cross-compiler
wouldn't handle floating point constants properly, I found a goof in
the Alcyon C V4.14 documentation.  It claims that, in the Motorola FFP
format, the exponent in bits 0..6 is stored in its two's complement
representation, but in reality it appears to be biased by 64 and stored
as an integer in the range 0..127.  Bit 7 is the sign bit and the unsigned
mantissa is in bits 8-31; there is no "hidden bit".

-Sandra