summaryrefslogtreecommitdiff
path: root/verilator_example_systemc/hello.v
blob: 2afa266e23288e66518a15114a37a0fd5b8088df (plain) (blame)
1
2
3
4
5
6
module hello(input clk);
	always @(posedge clk) begin
		$display("hello.");
		$finish;
	end
endmodule