isNormal property
latefinal
Return a Logic 1
if this FloatingPoint contains a normal number,
defined as having mantissa in the range [1,2)
.
Implementation
late final Logic isNormal = exponent
.neq(LogicValue.zero.zeroExtend(exponent.width))
.named(_nameJoin('isNormal', name), naming: Naming.mergeable);