URL
https://opencores.org/ocsvn/connect-6/connect-6/trunk
Subversion Repositories connect-6
[/] [connect-6/] [trunk/] [BUILD_SCC/] [DE2/] [Reset_Delay.v] - Rev 13
Go to most recent revision | Compare with Previous | Blame | View Log
module Reset_Delay(iCLK,oRESET); input iCLK; output reg oRESET; reg [15:0] Cont; always@(posedge iCLK) begin if(Cont!=16'hFFFF) begin Cont <= Cont+1; oRESET <= 1'b0; end else oRESET <= 1'b1; end endmodule
Go to most recent revision | Compare with Previous | Blame | View Log