mirror of https://github.com/YosysHQ/yosys.git
Disabled "Skipping blackbox module" msg in show command
This commit is contained in:
parent
281a033e92
commit
c35db8c19e
|
@ -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()) {
|
||||
|
|
Loading…
Reference in New Issue