fixup! abstract: -state allow partial abstraction, don't use buffer-normalized mode

This commit is contained in:
Emil J. Tywoniak 2025-02-07 13:49:42 +01:00
parent 9af21e6ee0
commit bfb20147b7
1 changed files with 1 additions and 2 deletions

View File

@ -34,12 +34,11 @@ bool abstract_state_port(FfData& ff, SigSpec& port_sig, std::set<int> offsets, E
mux_a = anyseq;
mux_b = mux_input;
}
Cell* mux = ff.module->addMux(NEW_ID,
(void)ff.module->addMux(NEW_ID,
mux_a,
mux_b,
enable.wire,
abstracted);
// log_cell(mux);
(void)ff.emit();
return true;
}