3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-11-09 23:52:03 +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 304757c881
commit d762c5f5e8
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();
}