blob: 4653bde3d768f70cdc3e8646959d1e3caebcd612 [file] [log] [blame] [edit]
module top(
input wire clk,
output wire [3:0] led
);
reg [3:0] cnt;
initial cnt <= 0;
always @(posedge clk)
cnt <= cnt + 1;
assign led = cnt;
endmodule