fixup! satgen: support $connect

This commit is contained in:
Emil J. Tywoniak 2026-03-12 22:16:06 +01:00
parent 0d353591fe
commit 4d1f8fd7d3
1 changed files with 1 additions and 1 deletions

View File

@ -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);