Changing error reason string to be based on lut input plane limit constant.

This commit is contained in:
Archie 2022-10-02 21:59:46 +02:00
parent 15a0697c70
commit d29606532a
1 changed files with 1 additions and 1 deletions

View File

@ -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)
{
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;
}
else