mirror of https://github.com/YosysHQ/yosys.git
Add write_aiger $anyseq support
This commit is contained in:
parent
5b3b5ffc8c
commit
a6ca28276e
|
@ -188,6 +188,13 @@ struct AigerWriter
|
|||
continue;
|
||||
}
|
||||
|
||||
if (cell->type == "$anyseq")
|
||||
{
|
||||
for (auto bit : sigmap(cell->getPort("\\Y")))
|
||||
input_bits.insert(bit);
|
||||
continue;
|
||||
}
|
||||
|
||||
log_error("Unsupported cell type: %s (%s)\n", log_id(cell->type), log_id(cell));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue