From: David Shah Date: Mon, 8 Jul 2019 14:43:48 +0000 (+0100) Subject: mul2dsp: Fix typo X-Git-Tag: working-ls180~1039^2~374 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e78864993adab41492670c089f6365088426726f;p=yosys.git mul2dsp: Fix typo Signed-off-by: David Shah --- diff --git a/techlibs/common/mul2dsp.v b/techlibs/common/mul2dsp.v index 37ce2e485..ece45db79 100644 --- a/techlibs/common/mul2dsp.v +++ b/techlibs/common/mul2dsp.v @@ -227,7 +227,7 @@ module \$__mul_gen (A, B, Y); if (Y_WIDTH < A_WIDTH+B_WIDTH) assign Y = out[Y_WIDTH-1:0]; else begin - wire Ysign = (A_SIGNED || B_SIGNED ? out[A_WIDTH+BWIDTH-1] : 1'b0); + wire Ysign = (A_SIGNED || B_SIGNED ? out[A_WIDTH+B_WIDTH-1] : 1'b0); assign Y = { {{Y_WIDTH-(A_WIDTH+B_WIDTH)}{Ysign}}, out[A_WIDTH+B_WIDTH-1:0] }; end end