mirror of https://github.com/YosysHQ/yosys.git
Ignore $scopeinfo in write_blif
This commit is contained in:
parent
5cfbc1604c
commit
59a60c76fe
|
@ -226,6 +226,9 @@ struct BlifDumper
|
|||
|
||||
for (auto cell : module->cells())
|
||||
{
|
||||
if (cell->type == ID($scopeinfo))
|
||||
continue;
|
||||
|
||||
if (config->unbuf_types.count(cell->type)) {
|
||||
auto portnames = config->unbuf_types.at(cell->type);
|
||||
f << stringf(".names %s %s\n1 1\n",
|
||||
|
|
Loading…
Reference in New Issue