mirror of
https://github.com/YosysHQ/yosys
synced 2026-04-15 08:44:11 +00:00
fixup! satgen: support $connect
This commit is contained in:
parent
0d353591fe
commit
4d1f8fd7d3
1 changed files with 1 additions and 1 deletions
|
|
@ -451,7 +451,7 @@ bool SatGen::importCell(RTLIL::Cell *cell, int timestep)
|
|||
std::vector<int> undef_y = importUndefSigSpec(cell->getPort(ID::Y), timestep);
|
||||
extendSignalWidthUnary(undef_a, undef_y, cell);
|
||||
|
||||
if (cell->type.in(ID($pos), ID($buf))) {
|
||||
if (cell->type.in(ID($pos), ID($buf), ID($connect))) {
|
||||
ez->assume(ez->vec_eq(undef_a, undef_y));
|
||||
} else {
|
||||
int undef_any_a = ez->expression(ezSAT::OpOr, undef_a);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue