From: Luke Kenneth Casson Leighton Date: Tue, 20 Aug 2019 05:22:51 +0000 (+0100) Subject: spelling mistake $i instead of %i X-Git-Tag: ls180-24jan2020~473 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a8605f611bccf2a0bcaf6c01c1d67f969d8b08a7;p=ieee754fpu.git spelling mistake $i instead of %i --- diff --git a/src/ieee754/part_mul_add/multiply.py b/src/ieee754/part_mul_add/multiply.py index 9047aab0..db2ba408 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), name="value_$i" % i, reset_less=True) + value = Signal(len(pbl), name="value_%di" % 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])