From 607e26b04166f805e8308fd8f04180c811c2564f Mon Sep 17 00:00:00 2001 From: Wilson Snyder Date: Tue, 8 Mar 2011 06:49:45 -0500 Subject: [PATCH] Commentary --- bin/verilator | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/verilator b/bin/verilator index b49ac974b..aa00c8a62 100755 --- a/bin/verilator +++ b/bin/verilator @@ -968,7 +968,7 @@ We'll compile this example into C++. cat <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