aboutsummaryrefslogtreecommitdiffstats
path: root/examples/gowin/demo.v
blob: 3cb782fa7b3ac42167c669ef8f74265fd4644931 (plain)
1
2
3
4
5
6
7
8
9
module demo (
	input clk,
	output [15:0] leds
);
	localparam PRESCALE = 20;
	reg [PRESCALE+3:0] counter = 0;
	always @(posedge clk) counter <= counter + 1;
	assign leds = 1 << counter[PRESCALE +: 4];
endmodule