mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-23 09:05:32 +00:00
take skip wire bits into account
This commit is contained in:
parent
22fe931c86
commit
e0c879684f
1 changed files with 3 additions and 0 deletions
|
@ -234,6 +234,9 @@ struct IopadmapPass : public Pass {
|
|||
SigBit wire_bit(wire, i);
|
||||
Cell *tbuf_cell = nullptr;
|
||||
|
||||
if (skip_wire_bits.count(wire_bit))
|
||||
continue;
|
||||
|
||||
if (tbuf_bits.count(wire_bit))
|
||||
tbuf_cell = tbuf_bits.at(wire_bit);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue