# CA note ###### tags: `Computer Architecture` ### Computer Architecture note * 2020 Fall --- ## IEEE754 Floating Point Representation * bias 127 * Single Precision : 32 bits | sign | exponent | significand | |:----:|:--------:|:-----------:| | 1 | 8 | 23 | ---- | Exponent | Significand | Object | |:--------:|:-----------:|:--------------:| | 0 | 0 | 0 | | 0 | nonzero | DeNorm | | 1-254 | anything | Floating point | | 255 | 0 | +-$\infty$ | | 255 | nonzero | NaN | * denorm scope ----