1
0
forked from tanchou/Verilog
Files
Verilog_Louis/Introduction/counter/counter.v

15 lines
241 B
Coq
Raw Normal View History

2025-03-22 09:50:52 +01:00
module counter (
input wire clk,
input wire rst,
output reg [3:0] count
);
always @(posedge clk)
begin
if(rst)
count <= 4'b0000;
else
count <= count + 1;
end
endmodule