From: Luke Kenneth Casson Leighton Date: Sun, 16 Jun 2019 13:41:00 +0000 (+0100) Subject: move comment X-Git-Tag: ls180-24jan2020~980 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=02adeb64b2c2949804f481351c423f91ecdceaf7;p=ieee754fpu.git move comment --- diff --git a/src/ieee754/fpadd/fadd_state.py b/src/ieee754/fpadd/fadd_state.py index 5601da36..3a69bed7 100644 --- a/src/ieee754/fpadd/fadd_state.py +++ b/src/ieee754/fpadd/fadd_state.py @@ -45,8 +45,8 @@ class FPADD(FPBase, Elaboratable): m.d.comb += a.v.eq(self.in_a.v) m.d.comb += b.v.eq(self.in_b.v) - w = z.m_width + 4 - tot = Signal(w, reset_less=True) # sticky/round/guard, {mantissa} result, 1 overflow + w = z.m_width + 4 # sticky/round/guard, {mantissa} result, 1 overflow + tot = Signal(w, reset_less=True) of = Overflow()