1
0
mirror of synced 2026-01-24 19:42:18 +00:00
2019-09-04 16:29:40 +02:00

11 lines
226 B
Verilog

module demo (
input clk,
output [15:0] leds,
output unused
);
localparam PRESCALE = 20;
reg [PRESCALE+3:0] counter = 0;
always @(posedge clk) counter <= counter + 1;
assign leds = 1 << counter[PRESCALE +: 4];
endmodule