mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-06 17:44:09 +00:00
Update fsm_detect bugfix
Signed-off-by: Clifford Wolf <clifford@clifford.at>
This commit is contained in:
parent
16df8f5a32
commit
4be5a0fd7c
|
@ -173,9 +173,10 @@ static void detect_fsm(RTLIL::Wire *wire)
|
||||||
|
|
||||||
if (set_output || clr_output) {
|
if (set_output || clr_output) {
|
||||||
for (auto &port_it : cell->connections())
|
for (auto &port_it : cell->connections())
|
||||||
for (auto bit : assign_map(port_it.second))
|
if (cell->input(port_it.first))
|
||||||
if (bit.wire != nullptr && !sig_q_bits.count(bit))
|
for (auto bit : assign_map(port_it.second))
|
||||||
goto next_cellport;
|
if (bit.wire != nullptr && !sig_q_bits.count(bit))
|
||||||
|
goto next_cellport;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (set_output || clr_output) {
|
if (set_output || clr_output) {
|
||||||
|
|
Loading…
Reference in a new issue