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

Subversion Repositories or1k

[/] [or1k/] [trunk/] [mp3/] [lib/] [xilinx/] [unisims/] [DECODE8.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/DECODE8.v,v 1.1.1.1 2001-11-04 18:59:47 lampret Exp $
2
 
3
/*
4
 
5
FUNCTION        : 8-INPUT Decoder
6
 
7
*/
8
 
9
`timescale  100 ps / 10 ps
10
 
11
`celldefine
12
 
13
module DECODE8 (O, A0, A1, A2, A3, A4, A5, A6, A7 );
14
 
15
    output O;
16
    wand   O;
17
 
18
    input  A0;
19
    input  A1;
20
    input  A2;
21
    input  A3;
22
    input  A4;
23
    input  A5;
24
    input  A6;
25
    input  A7;
26
 
27
    WAND1 W0 (.I(A0), .O(O));
28
    WAND1 W1 (.I(A1), .O(O));
29
    WAND1 W2 (.I(A2), .O(O));
30
    WAND1 W3 (.I(A3), .O(O));
31
    WAND1 W4 (.I(A4), .O(O));
32
    WAND1 W5 (.I(A5), .O(O));
33
    WAND1 W6 (.I(A6), .O(O));
34
    WAND1 W7 (.I(A7), .O(O));
35
 
36
endmodule
37
 
38
`endcelldefine

powered by: WebSVN 2.1.0

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