3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-08 10:25:19 +00:00

Revert "Fix typo"

This reverts commit e3c39cc450.
This commit is contained in:
Eddie Hung 2019-08-09 14:14:28 -07:00
parent 747690a6df
commit 82cbfada1b

View file

@ -143,7 +143,7 @@ code addAB sigCD sigO
if ((actual_acc_width > actual_mul_width) && (natural_mul_width > actual_mul_width))
reject;
if ((actual_acc_width != actual_mul_width) && (param(mul, \A_SIGNED).as_bool() != param(addAB, \B_SIGNED).as_bool()))
if ((actual_acc_width != actual_mul_width) && (param(mul, \A_SIGNED).as_bool() != param(addAB, \A_SIGNED).as_bool()))
reject;
sigO = port(addAB, \Y);