mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-23 09:05:32 +00:00
Re-created command-reference-manual.tex, copied some doc fixes to online help
This commit is contained in:
parent
84bf862f7c
commit
0350074819
10 changed files with 668 additions and 52 deletions
|
@ -50,7 +50,7 @@ struct ConnectPass : public Pass {
|
|||
log(" connect [-nomap] [-nounset] -set <lhs-expr> <rhs-expr>\n");
|
||||
log("\n");
|
||||
log("Create a connection. This is equivalent to adding the statement 'assign\n");
|
||||
log("<lhs-expr> = <rhs-expr>;' to the verilog input. Per default, all existing\n");
|
||||
log("<lhs-expr> = <rhs-expr>;' to the Verilog input. Per default, all existing\n");
|
||||
log("drivers for <lhs-expr> are unconnected. This can be overwritten by using\n");
|
||||
log("the -nounset option.\n");
|
||||
log("\n");
|
||||
|
|
|
@ -1061,7 +1061,7 @@ struct SelectPass : public Pass {
|
|||
log(" like %%d but swap the roles of two top sets on the stack\n");
|
||||
log("\n");
|
||||
log(" %%c\n");
|
||||
log(" create a copy of the top set rom the stack and push it\n");
|
||||
log(" create a copy of the top set from the stack and push it\n");
|
||||
log("\n");
|
||||
log(" %%x[<num1>|*][.<num2>][:<rule>[:<rule>..]]\n");
|
||||
log(" expand top set <num1> num times according to the specified rules.\n");
|
||||
|
|
|
@ -93,7 +93,7 @@ struct ProcInitPass : public Pass {
|
|||
log("\n");
|
||||
log(" proc_init [selection]\n");
|
||||
log("\n");
|
||||
log("This pass extracts the 'init' actions from processes (generated from verilog\n");
|
||||
log("This pass extracts the 'init' actions from processes (generated from Verilog\n");
|
||||
log("'initial' blocks) and sets the initial value to the 'init' attribute on the\n");
|
||||
log("respective wire.\n");
|
||||
log("\n");
|
||||
|
|
|
@ -990,7 +990,7 @@ struct SatPass : public Pass {
|
|||
log("is passed, a temporal induction proof is performed.\n");
|
||||
log("\n");
|
||||
log(" -tempinduct\n");
|
||||
log(" Perform a temporal induction proof. In a temporalinduction proof it is\n");
|
||||
log(" Perform a temporal induction proof. In a temporal induction proof it is\n");
|
||||
log(" proven that the condition holds forever after the number of time steps\n");
|
||||
log(" specified using -seq.\n");
|
||||
log("\n");
|
||||
|
|
|
@ -361,7 +361,7 @@ struct ExtractPass : public Pass {
|
|||
log("\n");
|
||||
log("This pass looks for subcircuits that are isomorphic to any of the modules\n");
|
||||
log("in the given map file and replaces them with instances of this modules. The\n");
|
||||
log("map file can be a verilog source file (*.v) or an ilang file (*.il).\n");
|
||||
log("map file can be a Verilog source file (*.v) or an ilang file (*.il).\n");
|
||||
log("\n");
|
||||
log(" -map <map_file>\n");
|
||||
log(" use the modules in this file as reference. This option can be used\n");
|
||||
|
|
|
@ -310,7 +310,7 @@ struct TestAutotbBackend : public Backend {
|
|||
log("\n");
|
||||
log(" test_autotb [options] [filename]\n");
|
||||
log("\n");
|
||||
log("Automatically create primitive verilog test benches for all modules in the\n");
|
||||
log("Automatically create primitive Verilog test benches for all modules in the\n");
|
||||
log("design. The generated testbenches toggle the input pins of the module in\n");
|
||||
log("a semi-random manner and dumps the resulting output signals.\n");
|
||||
log("\n");
|
||||
|
|
|
@ -556,7 +556,7 @@ struct TestCellPass : public Pass {
|
|||
log(" print additional debug information to the console\n");
|
||||
log("\n");
|
||||
log(" -vlog {filename}\n");
|
||||
log(" create a verilog test bench to test simlib and write_verilog\n");
|
||||
log(" create a Verilog test bench to test simlib and write_verilog\n");
|
||||
log("\n");
|
||||
}
|
||||
virtual void execute(std::vector<std::string> args, RTLIL::Design*)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue