// File Name: Project6.v (TLC)
// Traffic Light Controller
module Project6
    (
        input CLOCK_50,           // Clock
        input [17:0] SW,          			// E = SW[3], NL = SW[2], EL = SW[1], W = SW[0], Reset = SW[17]
        output [6:0] HEX7, HEX6, // Timer
        output [6:0] HEX3,        		// ETL
        output [6:0] HEX2,        		// NLTL
        output [6:0] HEX1,        		// ELTL
        output [6:0] HEX0         		// WTL
    );
	 
// Instantiate Clock_Div module
 
 // Instantiate TLC module
	
endmodule // Project6