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

Subversion Repositories pci

[/] [pci/] [tags/] [rel_3/] [rtl/] [verilog/] [pci_tpram.v] - Diff between revs 63 and 67

Go to most recent revision | Show entire file | Details | Blame | View Log

Rev 63 Rev 67
Line 60... Line 60...
//////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////
//
//
// CVS Revision History
// CVS Revision History
//
//
// $Log: not supported by cvs2svn $
// $Log: not supported by cvs2svn $
 
// Revision 1.5  2002/10/11 10:09:01  mihad
 
// Added additional testcase and changed rst name in BIST to trst
 
//
// Revision 1.4  2002/10/08 17:17:06  mihad
// Revision 1.4  2002/10/08 17:17:06  mihad
// Added BIST signals for RAMs.
// Added BIST signals for RAMs.
//
//
// Revision 1.3  2002/09/30 17:22:27  mihad
// Revision 1.3  2002/09/30 17:22:27  mihad
// Added support for Virtual Silicon two port RAM. Didn't run regression on it yet!
// Added support for Virtual Silicon two port RAM. Didn't run regression on it yet!
Line 101... Line 104...
    di_b,
    di_b,
    do_b
    do_b
`ifdef PCI_BIST
`ifdef PCI_BIST
    ,
    ,
    // debug chain signals
    // debug chain signals
    trst,
    scanb_rst,      // bist scan reset
    SO,
    scanb_clk,      // bist scan clock
    SI,
    scanb_si,       // bist scan serial in
    shift_DR,
    scanb_so,       // bist scan serial out
    capture_DR,
    scanb_sen       // bist scan shift enable
    extest,
 
    tck
 
`endif
`endif
);
);
 
 
//
//
// Default address and data buses width
// Default address and data buses width
Line 139... Line 140...
input   [dw-1:0] di_b;   // input data bus
input   [dw-1:0] di_b;   // input data bus
output  [dw-1:0] do_b;   // output data bus
output  [dw-1:0] do_b;   // output data bus
 
 
`ifdef PCI_BIST
`ifdef PCI_BIST
// debug chain signals
// debug chain signals
input   trst ;
input   scanb_rst;      // bist scan reset
output  SO ;
input   scanb_clk;      // bist scan clock
input   SI ;
input   scanb_si;       // bist scan serial in
input   shift_DR ;
output  scanb_so;       // bist scan serial out
input   capture_DR ;
input   scanb_sen;      // bist scan shift enable
input   extest ;
 
input   tck ;
 
`endif
`endif
 
 
//
//
// Internal wires and registers
// Internal wires and registers
//
//
Line 170... Line 169...
            .DOUT       (do_b),
            .DOUT       (do_b),
            .REN        (1'b0),
            .REN        (1'b0),
            .WEN        (!we_a)
            .WEN        (!we_a)
        `ifdef PCI_BIST
        `ifdef PCI_BIST
            ,
            ,
            // reset
 
            .trst        (trst),
 
 
 
            // debug chain signals
            // debug chain signals
            .SO         (SO),
            .scanb_rst  (scanb_rst),
            .SI         (SI),
            .scanb_clk  (scanb_clk),
            .shift_DR   (shift_DR),
            .scanb_si   (scanb_si),
            .capture_DR (capture_DR),
            .scanb_so   (scanb_so),
            .extest     (extest),
            .scanb_sen  (scanb_sen)
            .tck        (tck)
 
        `endif
        `endif
        );
        );
 
 
    assign do_a = 0 ;
    assign do_a = 0 ;
`endif
`endif

powered by: WebSVN 2.1.0

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