3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-05-08 16:25:49 +00:00

Added id2cstr API

This commit is contained in:
Clifford Wolf 2013-03-01 08:57:58 +01:00
parent 8a6b0a3520
commit 1bc0f04789
3 changed files with 17 additions and 10 deletions

View file

@ -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();
}
}