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

Subversion Repositories or1k

[/] [or1k/] [trunk/] [rc203soc/] [syn/] [RAMB4_S16_S16.v] - Rev 1765

Compare with Previous | Blame | View Log

//
// Black boxes for 4kB caches
//
// This are black boxes to synthesize caches memories using
// distributed memories. 
// To reduce area and improve timing it is strongly recommend to 
// use block RAM generated using Coregen
//
 
module RAMB4_S16_S16(
	 CLKA,
	 RSTA,
	 ADDRA,
	 DIA,
	 ENA,
	 WEA,
	 DOA,
	 CLKB,
	 RSTB,
	 ADDRB,
	 DIB,
	 ENB,
	 WEB,
	 DOB
	 );  //synthesis syn_black_box
 
input CLKA;
input RSTA;
input [7:0] ADDRA;
input [15:0] DIA;
input ENA;
input WEA;
output [15:0] DOA;
 
input CLKB;
input RSTB;
input [7:0] ADDRB;
input [15:0] DIB;
input ENB;
input WEB;
output [15:0] DOB;
endmodule
 

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.