diff options
author | Clifford Wolf <clifford@clifford.at> | 2015-03-29 20:22:08 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2015-03-29 20:22:08 +0200 |
commit | 4b4490761949e738dee54bdfc52e080e0a5c9067 (patch) | |
tree | 898587108a6d68bf6f502e4fee688932a09a95bb | |
parent | a923a63a892b8f0c39aa740c8fe207462fe2d8c8 (diff) | |
download | yosys-4b4490761949e738dee54bdfc52e080e0a5c9067.tar.gz yosys-4b4490761949e738dee54bdfc52e080e0a5c9067.tar.bz2 yosys-4b4490761949e738dee54bdfc52e080e0a5c9067.zip |
documentation improvements
-rw-r--r-- | passes/cmds/show.cc | 4 | ||||
-rw-r--r-- | passes/hierarchy/hierarchy.cc | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/passes/cmds/show.cc b/passes/cmds/show.cc index 7cda4400c..81321665c 100644 --- a/passes/cmds/show.cc +++ b/passes/cmds/show.cc @@ -590,6 +590,10 @@ struct ShowPass : public Pass { log(" inputs or outputs. This option can be used multiple times to specify\n"); log(" more than one library.\n"); log("\n"); + log(" note: in most cases it is better to load the library before calling\n"); + log(" show with 'read_verilog -lib <filename>'. it is also possible to\n"); + log(" load liberty files with 'read_liberty -lib <filename>'.\n"); + log("\n"); log(" -prefix <prefix>\n"); log(" generate <prefix>.* instead of ~/.yosys_show.*\n"); log("\n"); diff --git a/passes/hierarchy/hierarchy.cc b/passes/hierarchy/hierarchy.cc index 155d4e463..a393343d1 100644 --- a/passes/hierarchy/hierarchy.cc +++ b/passes/hierarchy/hierarchy.cc @@ -352,7 +352,7 @@ struct HierarchyPass : public Pass { log("\n"); log(" -purge_lib\n"); log(" by default the hierarchy command will not remove library (blackbox)\n"); - log(" module. use this options to also remove unused blackbox modules.\n"); + log(" modules. use this option to also remove unused blackbox modules.\n"); log("\n"); log(" -libdir <directory>\n"); log(" search for files named <module_name>.v in the specified directory\n"); |