Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 1.5 KB

README.md

File metadata and controls

26 lines (18 loc) · 1.5 KB

Bigfloat Library Unit Tests

High-performance, high-precision floating point library

Useful Links

Useful References

Packed Format

Likely would be used when sending over networks and such.

Field Start End Count Notes
Exponent 79 64 16 Bias of 1023 (same as IEEE double precision)
Sign 63 63 1 0 is positive, 1 is negative
Mantissa 62 0 63 Technically 64 bits, with a 1 for the MSB
Total 79 0 80 This is 10 bytes, or 2 more than a double.