1
0
mirror of synced 2026-05-01 06:00:26 +00:00
Files
YosysHQ.yosys/tests/hana/test_simulation_always_22_test.v
Clifford Wolf 7764d0ba1d initial import
2013-01-05 11:13:26 +01:00

8 lines
128 B
Verilog

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