bias property
latefinal
Return the exponent Logic representing the bias of this
FloatingPoint signal, the offset of the exponent, also representing the
zero exponent 2^0 = 1
.
Implementation
late final bias = Const((1 << exponent.width - 1) - 1, width: exponent.width)
.named(_nameJoin('bias', name), naming: Naming.mergeable);