From: Luke Kenneth Casson Leighton Date: Mon, 19 Aug 2019 14:29:30 +0000 (+0100) Subject: rename temporary value X-Git-Tag: ls180-24jan2020~474 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c4e3a3458759e39d35a04e16bd8e8f2708f119fb;p=ieee754fpu.git rename temporary value --- diff --git a/src/ieee754/part_mul_add/multiply.py b/src/ieee754/part_mul_add/multiply.py index 0e78bd9d..9047aab0 100644 --- a/src/ieee754/part_mul_add/multiply.py +++ b/src/ieee754/part_mul_add/multiply.py @@ -575,7 +575,7 @@ class Part(Elaboratable): for j in range(i * byte_count, (i + 1) * byte_count - 1): pbl.append(pbs[j]) pbl.append(npbs[(i + 1) * byte_count - 1]) - value = Signal(len(pbl), reset_less=True) + value = Signal(len(pbl), name="value_$i" % i, reset_less=True) m.d.comb += value.eq(Cat(*pbl)) m.d.comb += parts[i].eq(~(value).bool()) m.d.comb += delayed_parts[0][i].eq(parts[i])