mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-12 20:18:20 +00:00
Changing error reason string to be based on lut input plane limit constant.
This commit is contained in:
parent
15a0697c70
commit
d29606532a
|
@ -517,7 +517,7 @@ void parse_blif(RTLIL::Design *design, std::istream &f, IdString dff_name, bool
|
||||||
}
|
}
|
||||||
else if (input_sig.size() > lut_input_plane_limit)
|
else if (input_sig.size() > lut_input_plane_limit)
|
||||||
{
|
{
|
||||||
err_reason = stringf("names' input plane must have fewer than 13 signals.");
|
err_reason = stringf("names' input plane must have fewer than %d signals.", lut_input_plane_limit + 1);
|
||||||
goto error_with_reason;
|
goto error_with_reason;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue