3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-06 17:44:09 +00:00

Disabled "Skipping blackbox module" msg in show command

This commit is contained in:
Clifford Wolf 2015-10-23 20:11:05 +02:00
parent 281a033e92
commit c35db8c19e

View file

@ -552,7 +552,7 @@ struct ShowWorker
continue;
if (design->selected_whole_module(module->name)) {
if (module->get_bool_attribute("\\blackbox")) {
log("Skipping blackbox module %s.\n", id2cstr(module->name));
// log("Skipping blackbox module %s.\n", id2cstr(module->name));
continue;
} else
if (module->cells_.empty() && module->connections().empty() && module->processes.empty()) {