summaryrefslogtreecommitdiff
path: root/passes
diff options
context:
space:
mode:
Diffstat (limited to 'passes')
-rw-r--r--passes/abc/abc.cc6
-rw-r--r--passes/fsm/fsm_detect.cc6
-rw-r--r--passes/fsm/fsm_expand.cc2
-rw-r--r--passes/opt/opt_muxtree.cc2
-rw-r--r--passes/opt/opt_rmunused.cc6
-rw-r--r--passes/proc/proc_dff.cc4
-rw-r--r--passes/scc/scc.cc2
-rw-r--r--passes/submod/submod.cc4
-rw-r--r--passes/techmap/techmap.cc4
9 files changed, 18 insertions, 18 deletions
diff --git a/passes/abc/abc.cc b/passes/abc/abc.cc
index 4196cac8..b7680f06 100644
--- a/passes/abc/abc.cc
+++ b/passes/abc/abc.cc
@@ -638,9 +638,9 @@ struct AbcPass : public Pass {
log("\n");
log(" -liberty <file>\n");
log(" generate netlists for the specified cell library (using the liberty\n");
- log(" file format). This option is ignored if also -script option is also\n");
- log(" used. Without this option, ABC is used to optimize the netlist but\n");
- log(" keeps using yosys's internal gate library.\n");
+ log(" file format). Without this option, ABC is used to optimize the netlist\n");
+ log(" but keeps using yosys's internal gate library. This option is ignored if\n");
+ log(" the -script option is also used.\n");
log("\n");
log(" -nocleanup\n");
log(" when this option is used, the temporary files created by this pass\n");
diff --git a/passes/fsm/fsm_detect.cc b/passes/fsm/fsm_detect.cc
index f20675ff..e1cef943 100644
--- a/passes/fsm/fsm_detect.cc
+++ b/passes/fsm/fsm_detect.cc
@@ -116,14 +116,14 @@ struct FsmDetectPass : public Pass {
log("\n");
log(" fsm_detect [selection]\n");
log("\n");
- log("This pass detects finite state machine by identifying the state signal.\n");
+ log("This pass detects finite state machines by identifying the state signal.\n");
log("The state signal is then marked by setting the attribute 'fsm_encoding'\n");
log("on the state signal to \"auto\".\n");
log("\n");
log("Existing 'fsm_encoding' attributes are not changed by this pass.\n");
log("\n");
- log("Signals can be protected from beeing detected by this pass by setting the\n");
- log("'fsm_encoding' atrribute to \"none\".\n");
+ log("Signals can be protected from being detected by this pass by setting the\n");
+ log("'fsm_encoding' attribute to \"none\".\n");
log("\n");
}
virtual void execute(std::vector<std::string> args, RTLIL::Design *design)
diff --git a/passes/fsm/fsm_expand.cc b/passes/fsm/fsm_expand.cc
index e6829f49..df3aec85 100644
--- a/passes/fsm/fsm_expand.cc
+++ b/passes/fsm/fsm_expand.cc
@@ -241,7 +241,7 @@ struct FsmExpandPass : public Pass {
log("\n");
log(" fsm_expand [selection]\n");
log("\n");
- log("The fsm_extract pass is conservative about the cells that belong the a finate\n");
+ log("The fsm_extract pass is conservative about the cells that belong to a finite\n");
log("state machine. This pass can be used to merge additional auxiliary gates into\n");
log("the finate state machine.\n");
log("\n");
diff --git a/passes/opt/opt_muxtree.cc b/passes/opt/opt_muxtree.cc
index 5602b5ee..49b72f15 100644
--- a/passes/opt/opt_muxtree.cc
+++ b/passes/opt/opt_muxtree.cc
@@ -406,7 +406,7 @@ struct OptMuxtreePass : public Pass {
log(" opt_muxtree [selection]\n");
log("\n");
log("This pass analyzes the control signals for the multiplexer trees in the design\n");
- log("and identifies inputs that can never be active. In then removes this dead\n");
+ log("and identifies inputs that can never be active. It then removes this dead\n");
log("branches from the multiplexer trees.\n");
log("\n");
log("This pass only operates on completely selected modules without processes.\n");
diff --git a/passes/opt/opt_rmunused.cc b/passes/opt/opt_rmunused.cc
index c72a4587..6cec9b29 100644
--- a/passes/opt/opt_rmunused.cc
+++ b/passes/opt/opt_rmunused.cc
@@ -242,9 +242,9 @@ struct OptRmUnusedPass : public Pass {
log(" opt_rmunused [selection]\n");
log("\n");
log("This pass identifies wires and cells that are unused and removes them. Other\n");
- log("often remove cells but leave the wires in the design or reconnect the wires\n");
- log("but leave the old cells in the design. This pass can be used to clean up after\n");
- log("the passes that do the actual work.\n");
+ log("passes often remove cells but leave the wires in the design or reconnect the\n");
+ log("wires but leave the old cells in the design. This pass can be used to clean up\n");
+ log("after the passes that do the actual work.\n");
log("\n");
log("This pass only operates on completely selected modules without processes.\n");
log("\n");
diff --git a/passes/proc/proc_dff.cc b/passes/proc/proc_dff.cc
index 93b90006..94827c12 100644
--- a/passes/proc/proc_dff.cc
+++ b/passes/proc/proc_dff.cc
@@ -168,8 +168,8 @@ struct ProcDffPass : public Pass {
log("\n");
log(" proc_dff [selection]\n");
log("\n");
- log("This pass identifies flip-flops in the processes and converts then to\n");
- log("flip-flop cells.\n");
+ log("This pass identifies flip-flops in the processes and converts them to\n");
+ log("d-type flip-flop cells.\n");
log("\n");
}
virtual void execute(std::vector<std::string> args, RTLIL::Design *design)
diff --git a/passes/scc/scc.cc b/passes/scc/scc.cc
index 0dde3cbe..f8c351a4 100644
--- a/passes/scc/scc.cc
+++ b/passes/scc/scc.cc
@@ -211,7 +211,7 @@ struct SccPass : public Pass {
log("\n");
log(" -max_depth <num>\n");
log(" limit to loops not longer than the specified number of cells. This can\n");
- log(" e.g. be usefull in identifying local loops in a module that turns out\n");
+ log(" e.g. be useful in identifying local loops in a module that turns out\n");
log(" to be one gigantic SCC.\n");
log("\n");
log(" -all_cell_types\n");
diff --git a/passes/submod/submod.cc b/passes/submod/submod.cc
index f30e415b..f91d1ec3 100644
--- a/passes/submod/submod.cc
+++ b/passes/submod/submod.cc
@@ -239,7 +239,7 @@ struct SubmodWorker
};
struct SubmodPass : public Pass {
- SubmodPass() : Pass("submod", "moving part of a module to a new submodle") { }
+ SubmodPass() : Pass("submod", "moving part of a module to a new submodule") { }
virtual void help()
{
// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|
@@ -259,7 +259,7 @@ struct SubmodPass : public Pass {
}
virtual void execute(std::vector<std::string> args, RTLIL::Design *design)
{
- log_header("Executing SUBMOD pass (moving cells to submodes as requested).\n");
+ log_header("Executing SUBMOD pass (moving cells to submodules as requested).\n");
log_push();
Pass::call(design, "opt_rmunused");
diff --git a/passes/techmap/techmap.cc b/passes/techmap/techmap.cc
index c05a96cd..5fd5858a 100644
--- a/passes/techmap/techmap.cc
+++ b/passes/techmap/techmap.cc
@@ -172,14 +172,14 @@ struct TechmapPass : public Pass {
log("\n");
log(" techmap [-map filename] [selection]\n");
log("\n");
- log("This pass implements a very simple technology mapper than replaces cells in\n");
+ log("This pass implements a very simple technology mapper that replaces cells in\n");
log("the design with implementations given in form of a verilog or ilang source\n");
log("file.\n");
log("\n");
log(" -map filename\n");
log(" the library of cell implementations to be used.\n");
log(" without this parameter a builtin library is used that\n");
- log(" transform the internal RTL cells to the internal gate\n");
+ log(" transforms the internal RTL cells to the internal gate\n");
log(" library.\n");
log("\n");
log("See 'help extract' for a pass that does the opposite thing.\n");