3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-06 17:44:09 +00:00

Increase maximum LUT size in blifparse to 12 bits

This commit is contained in:
Clifford Wolf 2017-09-27 15:27:42 +02:00
parent 91d9c50bb3
commit 30396270a2

View file

@ -522,7 +522,7 @@ void parse_blif(RTLIL::Design *design, std::istream &f, std::string dff_name, bo
if (lutptr)
{
if (input_len > 8)
if (input_len > 12)
goto error;
for (int i = 0; i < (1 << input_len); i++) {