diff options
Diffstat (limited to 'verilator_example_c++/hello.v')
-rw-r--r-- | verilator_example_c++/hello.v | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/verilator_example_c++/hello.v b/verilator_example_c++/hello.v new file mode 100644 index 0000000..8e163d5 --- /dev/null +++ b/verilator_example_c++/hello.v @@ -0,0 +1,6 @@ +module hello; + initial begin + $display("hello."); + $finish; + end +endmodule |