summaryrefslogtreecommitdiff
path: root/tests/hana/test_simulation_always_22_test.v
blob: 8d91f8154da0f73ff38140fb10d1d2e09f14211b (plain)
1
2
3
4
5
6
7
module inc(clock, counter);

input clock;
output reg [7:0] counter;
always @(posedge clock)
	counter <= counter + 1;
endmodule