mirror of
https://github.com/YosysHQ/yosys
synced 2025-07-24 13:18:56 +00:00
Transform "$.*" to ID("$.*") in passes/techmap
This commit is contained in:
parent
4cfefae21e
commit
9f98241010
24 changed files with 356 additions and 361 deletions
|
@ -179,7 +179,7 @@ struct IopadmapPass : public Pass {
|
|||
SigMap rewrites;
|
||||
|
||||
for (auto cell : module->cells())
|
||||
if (cell->type == "$_TBUF_") {
|
||||
if (cell->type == ID($_TBUF_)) {
|
||||
SigBit bit = sigmap(cell->getPort("\\Y").as_bit());
|
||||
tbuf_bits[bit].first = cell->name;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue