summaryrefslogtreecommitdiffstats
path: root/part_1/ex2/ex2.v.bak
blob: 24dc138002e4deaad555f8e7f295f4a58217d80a (plain)
1
2
3
4
5
6
7
8
9
10
module ex2_top(SW,
					HEX0);

	input [3:0] SW;
	output [6:0] HEX0;
	
	hex_to_7seg SEG0(HEX0, SW);

endmodule