mirror of
https://github.com/YosysHQ/yosys
synced 2025-09-12 20:51:27 +00:00
Update techlibs to avoid bits()
This commit is contained in:
parent
360a625785
commit
975bbf2d6d
8 changed files with 22 additions and 26 deletions
|
@ -200,10 +200,8 @@ struct QlDspSimdPass : public Pass {
|
|||
auto val_a = dsp_a->getParam(it);
|
||||
auto val_b = dsp_b->getParam(it);
|
||||
|
||||
mode_bits.bits().insert(mode_bits.bits().end(),
|
||||
val_a.begin(), val_a.end());
|
||||
mode_bits.bits().insert(mode_bits.bits().end(),
|
||||
val_b.begin(), val_b.end());
|
||||
mode_bits.append(val_a);
|
||||
mode_bits.append(val_b);
|
||||
}
|
||||
|
||||
// Enable the fractured mode by connecting the control
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue