mirror of https://github.com/YosysHQ/yosys.git
Fixup parameters
This commit is contained in:
parent
266854aa64
commit
4a69969df4
|
|
@ -1492,6 +1492,7 @@ void AbcModuleState::extract(AbcSigMap &assign_map, RTLIL::Design *design, RTLIL
|
|||
RTLIL::IdString remapped_name = remap_name(c->getPort(name).as_wire()->name);
|
||||
cell->setPort(name, module->wire(remapped_name));
|
||||
}
|
||||
cell->fixup_parameters();
|
||||
design->select(module, cell);
|
||||
continue;
|
||||
}
|
||||
|
|
@ -1513,6 +1514,7 @@ void AbcModuleState::extract(AbcSigMap &assign_map, RTLIL::Design *design, RTLIL
|
|||
RTLIL::IdString remapped_name = remap_name(c->getPort(name).as_wire()->name);
|
||||
cell->setPort(name, module->wire(remapped_name));
|
||||
}
|
||||
cell->fixup_parameters();
|
||||
design->select(module, cell);
|
||||
continue;
|
||||
}
|
||||
|
|
@ -1530,6 +1532,7 @@ void AbcModuleState::extract(AbcSigMap &assign_map, RTLIL::Design *design, RTLIL
|
|||
RTLIL::IdString remapped_name = remap_name(c->getPort(name).as_wire()->name);
|
||||
cell->setPort(name, module->wire(remapped_name));
|
||||
}
|
||||
cell->fixup_parameters();
|
||||
design->select(module, cell);
|
||||
continue;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue