mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-09 23:53:26 +00:00
Added support for "blackbox" attribute to iopadmap
This commit is contained in:
parent
64a6906cc4
commit
b76bf05cda
1 changed files with 1 additions and 1 deletions
|
@ -115,7 +115,7 @@ struct IopadmapPass : public Pass {
|
||||||
{
|
{
|
||||||
RTLIL::Module *module = it.second;
|
RTLIL::Module *module = it.second;
|
||||||
|
|
||||||
if (!design->selected(module))
|
if (!design->selected(module) || module->get_bool_attribute("\\blackbox"))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
for (auto &it2 : module->wires)
|
for (auto &it2 : module->wires)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue