mirror of https://github.com/YosysHQ/yosys.git
Added support for "blackbox" attribute to iopadmap
This commit is contained in:
parent
64a6906cc4
commit
b76bf05cda
|
@ -115,7 +115,7 @@ struct IopadmapPass : public Pass {
|
|||
{
|
||||
RTLIL::Module *module = it.second;
|
||||
|
||||
if (!design->selected(module))
|
||||
if (!design->selected(module) || module->get_bool_attribute("\\blackbox"))
|
||||
continue;
|
||||
|
||||
for (auto &it2 : module->wires)
|
||||
|
|
Loading…
Reference in New Issue