diff options
author | William D. Jones <thor0505@comcast.net> | 2018-08-15 17:16:07 -0400 |
---|---|---|
committer | William D. Jones <thor0505@comcast.net> | 2018-08-15 17:18:19 -0400 |
commit | 7ce7ea2eb4903058ac4560d7b192cb5ed02aed89 (patch) | |
tree | 34b461d8f8dcecc9f602f2c4f2fbb47ab23c2d93 /passes/cmds | |
parent | 9f91c62348c533d0d0d167a393bab284b2c6de8d (diff) | |
download | yosys-7ce7ea2eb4903058ac4560d7b192cb5ed02aed89.tar.gz yosys-7ce7ea2eb4903058ac4560d7b192cb5ed02aed89.tar.bz2 yosys-7ce7ea2eb4903058ac4560d7b192cb5ed02aed89.zip |
Update show pass documentation with Windows caveats.
Diffstat (limited to 'passes/cmds')
-rw-r--r-- | passes/cmds/show.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/passes/cmds/show.cc b/passes/cmds/show.cc index fa88cd668..a48873244 100644 --- a/passes/cmds/show.cc +++ b/passes/cmds/show.cc @@ -584,6 +584,7 @@ struct ShowPass : public Pass { log("\n"); log(" -viewer <viewer>\n"); log(" Run the specified command with the graphics file as parameter.\n"); + log(" On Windows, this pauses yosys until the viewer exits.\n"); log("\n"); log(" -format <format>\n"); log(" Generate a graphics file in the specified format. Use 'dot' to just\n"); @@ -645,7 +646,7 @@ struct ShowPass : public Pass { log(" do not add the module name as graph title to the dot file\n"); log("\n"); log("When no <format> is specified, 'dot' is used. When no <format> and <viewer> is\n"); - log("specified, 'xdot' is used to display the schematic.\n"); + log("specified, 'xdot' is used to display the schematic (POSIX systems only).\n"); log("\n"); log("The generated output files are '~/.yosys_show.dot' and '~/.yosys_show.<format>',\n"); log("unless another prefix is specified using -prefix <prefix>.\n"); |