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

Subversion Repositories or1k

[/] [or1k/] [trunk/] [mp3/] [lib/] [xilinx/] [unisims/] [DECODE8.v] - Rev 1765

Compare with Previous | Blame | View Log

// $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 $
 
/*
 
FUNCTION	: 8-INPUT Decoder
 
*/
 
`timescale  100 ps / 10 ps
 
`celldefine
 
module DECODE8 (O, A0, A1, A2, A3, A4, A5, A6, A7 );
 
    output O;
    wand   O;
 
    input  A0;
    input  A1;
    input  A2;
    input  A3;
    input  A4;
    input  A5;
    input  A6;
    input  A7;
 
    WAND1 W0 (.I(A0), .O(O));
    WAND1 W1 (.I(A1), .O(O));
    WAND1 W2 (.I(A2), .O(O));
    WAND1 W3 (.I(A3), .O(O));
    WAND1 W4 (.I(A4), .O(O));
    WAND1 W5 (.I(A5), .O(O));
    WAND1 W6 (.I(A6), .O(O));
    WAND1 W7 (.I(A7), .O(O));
 
endmodule
 
`endcelldefine
 

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

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