3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-06 01:24:10 +00:00

aiger2: Ignore benign cells

This commit is contained in:
Martin Povišer 2024-09-18 16:38:05 +02:00
parent 1ab7f29933
commit 72d65063c3

View file

@ -87,7 +87,7 @@ struct Index {
int pos = index_wires(info, m);
for (auto cell : m->cells()) {
if (cell->type.in(KNOWN_OPS))
if (cell->type.in(KNOWN_OPS) || cell->type.in(ID($scopeinfo), ID($specify2), ID($specify3)))
continue;
Module *submodule = m->design->module(cell->type);