3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-01-05 18:42:46 +00:00

proc_mux: emit fused action location src attributes on procmuxes

This commit is contained in:
Emil J. Tywoniak 2025-10-30 15:41:46 +01:00
parent 7072a8e893
commit 6d39a505fb
2 changed files with 59 additions and 6 deletions

View file

@ -441,6 +441,7 @@ struct AST_INTERNAL::ProcessGenerator
RTLIL::SigSpec lhs = init_lvalue_c;
RTLIL::SigSpec rhs = init_rvalue.extract(offset, init_lvalue_c.width);
remove_unwanted_lvalue_bits(lhs, rhs);
// TODO
sync->actions.push_back({lhs, rhs, Const("")});
offset += lhs.size();
}