yosys/tests/hana/test_simulation_always_22_test.v
2013-01-05 11:13:26 +01:00

7 lines
128 B
Verilog

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