summaryrefslogtreecommitdiff
path: root/tests/projects/embed/verilator/hello_vcd/src/main.v
blob: 9bd2c43b5d33d20083421d02c74bf4abb88955a0 (plain)
1
2
3
4
5
6
7
module hello;
  initial begin
    $display("hello world!");
    $dumpvars(0, hello);
    $finish ;
  end
endmodule