3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-28 03:15:50 +00:00

Progress on cell help messages

This commit is contained in:
Clifford Wolf 2015-10-17 02:22:42 +02:00
parent 255bb914ba
commit 5d1c0ce7c0
3 changed files with 107 additions and 54 deletions

View file

@ -644,7 +644,7 @@ struct HelpPass : public Pass {
for (auto &it : cell_help_messages.cell_help) {
string line = split_tokens(it.second, "\n").at(0);
string cell_name = next_token(line);
log(" %-10s %s\n", cell_name.c_str(), line.c_str());
log(" %-15s %s\n", cell_name.c_str(), line.c_str());
}
log("\n");
log("Type 'help <cell_type>' for more information on a cell type.\n");