aboutsummaryrefslogtreecommitdiff
path: root/src/top.v
blob: 6fab4a6883cfac9adbc345052d4ea58abfe243cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
module top (
	input clk,
	input key,
	output [5:0] led
);

reg [5:0] ctr_q;
wire [5:0] ctr_d;

always @(posedge clk) begin
	if (key) ctr_q <= ctr_d;
	else ctr_q <= 6'b0;
end

assign ctr_d = ctr_q + 6'b1;
assign led = ctr_q;

endmodule