projects
/
yosys.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
91d9c50
)
Increase maximum LUT size in blifparse to 12 bits
author
Clifford Wolf
<clifford@clifford.at>
Wed, 27 Sep 2017 13:27:42 +0000
(15:27 +0200)
committer
Clifford Wolf
<clifford@clifford.at>
Wed, 27 Sep 2017 13:27:42 +0000
(15:27 +0200)
frontends/blif/blifparse.cc
patch
|
blob
|
history
diff --git
a/frontends/blif/blifparse.cc
b/frontends/blif/blifparse.cc
index 3af0cd441d63aa647bc119f811044288141c496c..e6bb9995459e52d893ea8c7a8d3d01eefc3ab493 100644
(file)
--- 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++) {