yosys/tests/hana/test_simulation_always_22_t...

8 lines
128 B
Verilog

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