yosys4gal/testcases/up_counter_downto.v

12 lines
126 B
Coq
Raw Normal View History

2024-04-04 06:33:47 +00:00
module test (
input clk,
2024-05-04 23:16:30 +00:00
output reg [6:0] counter
2024-04-04 06:33:47 +00:00
);
always @ (posedge clk) begin
counter <= counter + 1;
end
endmodule