3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-24 01:25:33 +00:00

Another block of spelling fixes

Smaller this time
This commit is contained in:
Larry Doolittle 2015-08-14 13:23:01 -07:00 committed by Clifford Wolf
parent 022f570563
commit 6c00704a5e
24 changed files with 53 additions and 53 deletions

View file

@ -1,7 +1,7 @@
#!/bin/sh
#
# Script to writing btor from verilog design
# Script to write BTOR from Verilog design
#
if [ "$#" -ne 3 ]; then

View file

@ -329,7 +329,7 @@ struct JsonBackend : public Backend {
log("connected to a constant driver are denoted as string \"0\" or \"1\" instead of\n");
log("a number.\n");
log("\n");
log("For example the following verilog code:\n");
log("For example the following Verilog code:\n");
log("\n");
log(" module test(input x, y);\n");
log(" (* keep *) foo #(.P(42), .Q(1337))\n");

View file

@ -17,7 +17,7 @@
*
* ---
*
* A simple and straightforward verilog backend.
* A simple and straightforward Verilog backend.
*
* Note that RTLIL processes can't always be mapped easily to a Verilog
* process. Therefore this frontend should only be used to export a
@ -966,7 +966,7 @@ bool dump_cell_expr(std::ostream &f, std::string indent, RTLIL::Cell *cell)
n += wen_width;
}
}
// Output verilog that looks something like this:
// Output Verilog that looks something like this:
// reg [..] _3_;
// always @(posedge CLK2) begin
// _3_ <= memory[D1ADDR];