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

Subversion Repositories or1k

[/] [or1k/] [trunk/] [mp3/] [lib/] [xilinx/] [unisims/] [XOR4.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/XOR4.v,v 1.1.1.1 2001-11-04 19:00:00 lampret Exp $
2
 
3
/*
4
 
5
FUNCTION        : 4-INPUT XOR GATE
6
 
7
*/
8
 
9
`timescale  100 ps / 10 ps
10
 
11
`celldefine
12
 
13
module XOR4 (O, I0, I1, I2, I3);
14
 
15
    parameter cds_action = "ignore";
16
 
17
    output O;
18
 
19
    input  I0, I1, I2, I3;
20
 
21
        xor X1 (O, I0, I1, I2, I3);
22
 
23
    specify
24
        (I0 *> O) = (1, 1);
25
        (I1 *> O) = (1, 1);
26
        (I2 *> O) = (1, 1);
27
        (I3 *> O) = (1, 1);
28
    endspecify
29
 
30
endmodule
31
 
32
`endcelldefine

powered by: WebSVN 2.1.0

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