mirror of
https://github.com/YosysHQ/yosys
synced 2025-05-08 16:25:49 +00:00
fixed typos
This commit is contained in:
parent
ba3793b642
commit
cd8008bda0
12 changed files with 26 additions and 26 deletions
|
@ -642,13 +642,13 @@ struct SelectPass : public Pass {
|
|||
log(" whole design.\n");
|
||||
log("\n");
|
||||
log(" -module <modname>\n");
|
||||
log(" limit the current scope to the specified module\n");
|
||||
log(" limit the current scope to the specified module.\n");
|
||||
log(" the difference between this and simply selecting the module\n");
|
||||
log(" is that all object names are interpreted relative to this\n");
|
||||
log(" module after this command until the selection is cleared again.\n");
|
||||
log("\n");
|
||||
log("When this command is called without an argument, the current selection\n");
|
||||
log("is displayed in a compact form (i.e.. only the module name when a whole module\n");
|
||||
log("is displayed in a compact form (i.e. only the module name when a whole module\n");
|
||||
log("is selected).\n");
|
||||
log("\n");
|
||||
log("The <selection> argument itself is a series of commands for a simple stack\n");
|
||||
|
@ -697,8 +697,8 @@ struct SelectPass : public Pass {
|
|||
log(" all objects with a matching attribute name-value-pair\n");
|
||||
log("\n");
|
||||
log(" n:<pattern>\n");
|
||||
log(" all object with a name matching the given pattern\n");
|
||||
log(" (i.e. the n: is optional as it is the default matching rule)\n");
|
||||
log(" all objects with a name matching the given pattern\n");
|
||||
log(" (i.e. 'n:' is optional as it is the default matching rule)\n");
|
||||
log("\n");
|
||||
log(" @<name>\n");
|
||||
log(" push the selection saved prior with 'select -set <name> ...'\n");
|
||||
|
@ -724,12 +724,12 @@ struct SelectPass : public Pass {
|
|||
log(" pop the top set from the stack and subtract it from the new top\n");
|
||||
log("\n");
|
||||
log(" %%x[<num1>|*][.<num2>][:<rule>[:<rule>..]]\n");
|
||||
log(" expand top set <num1> num times accorind to the specified rules.\n");
|
||||
log(" expand top set <num1> num times according to the specified rules.\n");
|
||||
log(" (i.e. select all cells connected to selected wires and select all\n");
|
||||
log(" wires connected to selected cells) The rules specify which cell\n");
|
||||
log(" ports to use for this. the syntax for a rule is a '-' for exclusion\n");
|
||||
log(" and a '+' for inclusion, followed by an optional comma seperated\n");
|
||||
log(" list of cell types followed by an optional comma seperated list of\n");
|
||||
log(" list of cell types followed by an optional comma separated list of\n");
|
||||
log(" cell ports in square brackets. a rule can also be just a cell or wire\n");
|
||||
log(" name that limits the expansion (is included but does not go beyond).\n");
|
||||
log(" select at most <num2> objects. a warning message is printed when this\n");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue