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