aboutsummaryrefslogtreecommitdiffstats
path: root/examples/gowin/demo.v
blob: f5c001893f7452b96553e7ce6935e20886887327 (plain)
1
2
3
4
5
6
7
8
9
10
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