yosys4gal/testcases/up_counter_upto.v

12 lines
126 B
Coq
Raw Permalink Normal View History

2024-03-18 05:06:49 +00:00
module test (
input clk,
output reg [0:7] counter
);
always @ (posedge clk) begin
2024-03-18 07:12:59 +00:00
counter <= counter + 1;
2024-03-18 05:06:49 +00:00
end
endmodule