OpenCores
URL https://opencores.org/ocsvn/connect-6/connect-6/trunk

Subversion Repositories connect-6

[/] [connect-6/] [trunk/] [BUILD_SCC/] [DE2/] [Reset_Delay.v] - Blame information for rev 4

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 4 sumanta.ch
module  Reset_Delay(iCLK,oRESET);
2
input           iCLK;
3
output reg      oRESET;
4
reg     [15:0]   Cont;
5
 
6
always@(posedge iCLK)
7
begin
8
        if(Cont!=16'hFFFF)
9
        begin
10
                Cont    <=      Cont+1;
11
                oRESET  <=      1'b0;
12
        end
13
        else
14
        oRESET  <=      1'b1;
15
end
16
 
17
endmodule

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.