// File Name: Project5.v
module Project5(
	input [0:0] KEY,
	input [17:0] SW,
	output [1:0] LEDR,
	output [1:0] LEDG,
  output [6:0] HEX1, HEX0
	);

  // index into count_to_hex to get the correct 7-bit value to send to the HEX for any count
  reg [6:0] count_to_hex [0:3];   
  initial begin
    count_to_hex[0] = 7'b1000000;
    count_to_hex[1] = 7'b1111001;
    count_to_hex[2] = 7'b0100100;
    count_to_hex[3] = 7'b0110000;
  end

	
endmodule // Project5


