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

Subversion Repositories or1k

[/] [or1k/] [trunk/] [mp3/] [lib/] [xilinx/] [unisims/] [ILDXI_1M.v] - Blame information for rev 1767

Go to most recent revision | 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/ILDXI_1M.v,v 1.1.1.1 2001-11-04 18:59:48 lampret Exp $
2
 
3
/*
4
 
5
FUNCTION        : Input D-LATCH with gate enable
6
 
7
*/
8
 
9
`timescale  100 ps / 10 ps
10
 
11
`celldefine
12
 
13
module ILDXI_1M (Q, D, G, GE);
14
 
15
    parameter cds_action = "ignore";
16
    parameter INIT = 1'b1;
17
 
18
    output Q;
19
    reg    q_out;
20
 
21
    input  D, G, GE;
22
 
23
    tri0 GSR = glbl.GSR;
24
 
25
    buf B1 (Q, q_out);
26
 
27
        always @(GSR or D or G or GE)
28
            if (GSR)
29
                q_out <= INIT;
30
            else if (!G && GE)
31
                q_out <= D;
32
 
33
    specify
34
        (D => Q) = (1, 1);
35
        (negedge G => (Q +: D)) = (1, 1);
36
        (posedge GE => (Q +: D)) = (1, 1);
37
    endspecify
38
 
39
endmodule
40
 
41
`endcelldefine

powered by: WebSVN 2.1.0

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