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

Subversion Repositories or1k

[/] [or1k/] [tags/] [arelease/] [rc203soc/] [syn/] [RAMB4_S16_S16.v] - Blame information for rev 1778

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 1327 jcastillo
//
2
// Black boxes for 4kB caches
3
//
4
// This are black boxes to synthesize caches memories using
5
// distributed memories. 
6
// To reduce area and improve timing it is strongly recommend to 
7
// use block RAM generated using Coregen
8
//
9
 
10
module RAMB4_S16_S16(
11
         CLKA,
12
         RSTA,
13
         ADDRA,
14
         DIA,
15
         ENA,
16
         WEA,
17
         DOA,
18
         CLKB,
19
         RSTB,
20
         ADDRB,
21
         DIB,
22
         ENB,
23
         WEB,
24
         DOB
25
         );  //synthesis syn_black_box
26
 
27
input CLKA;
28
input RSTA;
29
input [7:0] ADDRA;
30
input [15:0] DIA;
31
input ENA;
32
input WEA;
33
output [15:0] DOA;
34
 
35
input CLKB;
36
input RSTB;
37
input [7:0] ADDRB;
38
input [15:0] DIB;
39
input ENB;
40
input WEB;
41
output [15:0] DOB;
42
endmodule

powered by: WebSVN 2.1.0

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