29.11. x86 x87 FPU instructions

Old floating point unit that you should likely not use anymore, prefer instead the newer x86 SIMD instructions.

The ST0-ST7 x87 FPU registers are actually 80-bits wide, this can be seen from GDB with:

i r st0 st1

By counting the number of hex digits, we have 20 digits instead of 16!

Instructions such as FLDL convert standard IEEE 754 64-bit values from memory into this custom 80-bit format.