isNormal method
Return a Logic true if this FloatingPoint contains a normal number, defined as having mantissa in the range [1,2)
Implementation
Logic isNormal() => exponent.neq(LogicValue.zero.zeroExtend(exponent.width));
Return a Logic true if this FloatingPoint contains a normal number, defined as having mantissa in the range [1,2)
Logic isNormal() => exponent.neq(LogicValue.zero.zeroExtend(exponent.width));