mirror of https://github.com/YosysHQ/yosys.git
fixup! abstract: -state allow partial abstraction, don't use buffer-normalized mode
This commit is contained in:
parent
9af21e6ee0
commit
bfb20147b7
|
@ -34,12 +34,11 @@ bool abstract_state_port(FfData& ff, SigSpec& port_sig, std::set<int> offsets, E
|
||||||
mux_a = anyseq;
|
mux_a = anyseq;
|
||||||
mux_b = mux_input;
|
mux_b = mux_input;
|
||||||
}
|
}
|
||||||
Cell* mux = ff.module->addMux(NEW_ID,
|
(void)ff.module->addMux(NEW_ID,
|
||||||
mux_a,
|
mux_a,
|
||||||
mux_b,
|
mux_b,
|
||||||
enable.wire,
|
enable.wire,
|
||||||
abstracted);
|
abstracted);
|
||||||
// log_cell(mux);
|
|
||||||
(void)ff.emit();
|
(void)ff.emit();
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue