OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [tags/] [stable/] [mp3/] [lib/] [xilinx/] [unisims/] [OFDT_S_24.v] - Blame information for rev 1765

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 266 lampret
// $Header: /home/marcus/revision_ctrl_test/oc_cvs/cvs/or1k/mp3/lib/xilinx/unisims/OFDT_S_24.v,v 1.1.1.1 2001-11-04 18:59:50 lampret Exp $
2
 
3
/*
4
 
5
FUNCTION        : Output D-FLIP-FLOP
6
 
7
*/
8
 
9
`timescale  100 ps / 10 ps
10
 
11
`celldefine
12
 
13
module OFDT_S_24 (O, C, D, T);
14
 
15
    parameter cds_action = "ignore";
16
    parameter INIT = 1'b0;
17
 
18
    output O;
19
    reg    o_in;
20
 
21
    input  C, D, T;
22
 
23
    tri0 GSR = glbl.GSR;
24
    tri0 GTS = glbl.GTS;
25
 
26
        always @(GSR)
27
            if (GSR)
28
                assign o_in = INIT;
29
            else
30
                deassign o_in;
31
 
32
        always @(posedge C)
33
            o_in <= D;
34
 
35
    or (t_in, GTS, T);
36
    bufif0 (O, o_in, t_in);
37
 
38
    specify
39
        (posedge C => (O +: D)) = (1, 1);
40
        (T => O) = (1, 1, 0);
41
    endspecify
42
 
43
endmodule
44
 
45
`endcelldefine

powered by: WebSVN 2.1.0

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