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

		input [3:0] SW;
		output [6:0] HEX0;

		hex_to_7seg SEG0 (HEX0, SW);
		
endmodule