mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-06 14:13:23 +00:00
Check blackbox attribute in techmap/simplemap
Signed-off-by: Clifford Wolf <clifford@clifford.at>
This commit is contained in:
parent
5b915f0153
commit
b7445ef387
2 changed files with 2 additions and 2 deletions
|
@ -385,7 +385,7 @@ struct TechmapWorker
|
|||
{
|
||||
std::string mapmsg_prefix = in_recursion ? "Recursively mapping" : "Mapping";
|
||||
|
||||
if (!design->selected(module))
|
||||
if (!design->selected(module) || module->get_blackbox_attribute())
|
||||
return false;
|
||||
|
||||
bool log_continue = false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue