mirror of
https://github.com/YosysHQ/yosys
synced 2025-05-08 16:25:49 +00:00
Added id2cstr API
This commit is contained in:
parent
8a6b0a3520
commit
1bc0f04789
3 changed files with 17 additions and 10 deletions
|
@ -289,9 +289,9 @@ struct ShowWorker
|
|||
if (!design->selected_module(module->name))
|
||||
continue;
|
||||
if (design->selected_whole_module(module->name))
|
||||
log("Dumping module %s to page %d.\n", module->name.c_str(), ++page_counter);
|
||||
log("Dumping module %s to page %d.\n", id2cstr(module->name), ++page_counter);
|
||||
else
|
||||
log("Dumping selected parts of module %s to page %d.\n", module->name.c_str(), ++page_counter);
|
||||
log("Dumping selected parts of module %s to page %d.\n", id2cstr(module->name), ++page_counter);
|
||||
handle_module();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue