module LEDG_Driver(LED,iCLK,iRST_N); output [7:0] LED; input iCLK; input iRST_N; reg [20:0] Cont; reg [7:0] mLED; reg DIR; always@(posedge iCLK) Cont <= Cont+1'b1; assign LED = mLED; endmodule