yosys4gal/testcases/up_counter_upto.v
annoyatron255 f20410a723
Add OLMCs
2024-04-04 01:33:47 -05:00

12 lines
126 B
Verilog

module test (
input clk,
output reg [0:7] counter
);
always @ (posedge clk) begin
counter <= counter + 1;
end
endmodule