aboutsummaryrefslogtreecommitdiffstats
path: root/examples/up5k/example.v
blob: 01b76b855b291f364115c1fda6efabce35c62b69 (plain)
1
2
3
4
5
6
7
8
9
10
module top (
	input  btn,
	output LED0,
	output LED1,
);

assign LED0 = !btn;
assign LED1 = btn;

endmodule