diff options
author | Martin Stensgård <mastensg@mastensg.net> | 2025-04-26 17:45:52 +0200 |
---|---|---|
committer | Martin Stensgård <mastensg@mastensg.net> | 2025-04-26 17:45:52 +0200 |
commit | a9859aebb4a1baf58b2cf383ca85ba80d4eea313 (patch) | |
tree | 5c4b075eb0868bf08ba156172c68e2ee1124b640 /verilator_example_c++/hello.v | |
parent | 554b69e206027918e38c8da33099937da9332456 (diff) |
verilator_example_c++: hello
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 |