From: Clifford Wolf Date: Wed, 27 Sep 2017 13:27:42 +0000 (+0200) Subject: Increase maximum LUT size in blifparse to 12 bits X-Git-Tag: yosys-0.8~313 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=30396270a28471dc8832a93732541a79b61042bd;p=yosys.git Increase maximum LUT size in blifparse to 12 bits --- diff --git a/frontends/blif/blifparse.cc b/frontends/blif/blifparse.cc index 3af0cd441..e6bb99954 100644 --- a/frontends/blif/blifparse.cc +++ b/frontends/blif/blifparse.cc @@ -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++) {