diff options
author | Eddie Hung <eddie@fpgeh.com> | 2019-07-08 19:21:21 -0700 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2019-07-08 19:21:21 -0700 |
commit | 41d7d9d24b8ba7fd84dd72b27eb9aede10b8ef15 (patch) | |
tree | d39b4611b2c5d485a29573a92eb668ecaa0c139d /kernel | |
parent | 030483ffb909ab38e10d437d09ec922cb0ad2ce8 (diff) | |
download | yosys-41d7d9d24b8ba7fd84dd72b27eb9aede10b8ef15.tar.gz yosys-41d7d9d24b8ba7fd84dd72b27eb9aede10b8ef15.tar.bz2 yosys-41d7d9d24b8ba7fd84dd72b27eb9aede10b8ef15.zip |
Clarify script -scriptwire doc
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/yosys.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/kernel/yosys.cc b/kernel/yosys.cc index f95c0127b..a42a7c0b8 100644 --- a/kernel/yosys.cc +++ b/kernel/yosys.cc @@ -1273,6 +1273,10 @@ struct ScriptCmdPass : public Pass { log("If only one label is specified (without ':') then only the block\n"); log("marked with that label (until the next label) is executed.\n"); log("\n"); + log("In \"-scriptwire\" mode, the commands on the selected wire(s) will be executed\n"); + log("in the scope of (and thus, relative to) the wires' owning module(s). This\n"); + log("'-module' mode can be exited by using the 'cd' command.\n"); + log("\n"); } void execute(std::vector<std::string> args, RTLIL::Design *design) YS_OVERRIDE { |