Commentary

This commit is contained in:
Wilson Snyder 2011-03-08 06:49:45 -05:00
parent ea75290f65
commit 607e26b041
1 changed files with 2 additions and 2 deletions

View File

@ -968,7 +968,7 @@ We'll compile this example into C++.
cat <<EOF >our.v
module our;
initial begin \$display("Hello World"); \$finish; end
initial begin $display("Hello World"); $finish; end
endmodule
EOF
@ -1033,7 +1033,7 @@ This is an example similar to the above, but using SystemPerl.
module our (clk);
input clk; // Clock is required to get initial activation
always @ (posedge clk)
begin \$display("Hello World"); \$finish; end
begin $display("Hello World"); $finish; end
endmodule
EOF