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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [or1200/] [rtl/] [verilog/] [or1200_spram_128x32.v] - Diff between revs 10 and 142

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

Rev 10 Rev 142
Line 57... Line 57...
////                                                              ////
////                                                              ////
//////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////
//
//
// CVS Revision History
// CVS Revision History
//
//
// $Log: not supported by cvs2svn $
// $Log: or1200_spram_128x32.v,v $
 
// Revision 2.0  2010/06/30 11:00:00  ORSoC
 
// Minor update: 
 
// Coding style changed.
 
//
 
// Revision 1.3  2005/10/19 11:37:56  jcastillo
 
// Added support for RAMB16 Xilinx4/Spartan3 primitives
 
//
// Revision 1.2  2004/06/08 18:15:32  lampret
// Revision 1.2  2004/06/08 18:15:32  lampret
// Changed behavior of the simulation generic models
// Changed behavior of the simulation generic models
//
//
// Revision 1.1  2004/04/08 11:00:46  simont
// Revision 1.1  2004/04/08 11:00:46  simont
// Add support for 512B instruction cache.
// Add support for 512B instruction cache.
Line 190... Line 197...
//
//
// Block 0
// Block 0
//
//
RAMB4_S16 ramb4_s16_0(
RAMB4_S16 ramb4_s16_0(
        .CLK(clk),
        .CLK(clk),
        .RST(rst),
        .RST(1'b0),
        .ADDR({1'b0, addr}),
        .ADDR({1'b0, addr}),
        .DI(di[15:0]),
        .DI(di[15:0]),
        .EN(ce),
        .EN(ce),
        .WE(we),
        .WE(we),
        .DO(doq[15:0])
        .DO(doq[15:0])
Line 203... Line 210...
//
//
// Block 1
// Block 1
//
//
RAMB4_S16 ramb4_s16_1(
RAMB4_S16 ramb4_s16_1(
        .CLK(clk),
        .CLK(clk),
        .RST(rst),
        .RST(1'b0),
        .ADDR({1'b0, addr}),
        .ADDR({1'b0, addr}),
        .DI(di[31:16]),
        .DI(di[31:16]),
        .EN(ce),
        .EN(ce),
        .WE(we),
        .WE(we),
        .DO(doq[31:16])
        .DO(doq[31:16])
Line 225... Line 232...
// Added By Nir Mor
// Added By Nir Mor
//
//
 
 
RAMB16_S36 ramb16_s36(
RAMB16_S36 ramb16_s36(
        .CLK(clk),
        .CLK(clk),
        .SSR(rst),
        .SSR(1'b0),
        .ADDR({2'b00, addr}),
        .ADDR({2'b00, addr}),
        .DI(di),
        .DI(di),
        .DIP(4'h0),
        .DIP(4'h0),
        .EN(ce),
        .EN(ce),
        .WE(we),
        .WE(we),

powered by: WebSVN 2.1.0

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