mirror of
https://github.com/wfjm/w11.git
synced 2026-04-30 21:49:43 +00:00
96 lines
3.4 KiB
VHDL
96 lines
3.4 KiB
VHDL
-- $Id: ram_2swsr_rfirst_gen.vhd 1181 2019-07-08 17:00:50Z mueller $
|
|
-- SPDX-License-Identifier: GPL-3.0-or-later
|
|
-- Copyright 2006-2011 by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
|
|
--
|
|
------------------------------------------------------------------------------
|
|
-- Module Name: ram_2swsr_rfirst_gen - syn
|
|
-- Description: Dual-Port RAM with with two synchronous read/write ports
|
|
-- and 'read-before-write' semantics (as block RAM).
|
|
-- The code is inspired by Xilinx example rams_16.vhd. The
|
|
-- 'ram_style' attribute is set to 'block', this will
|
|
-- force in XST a synthesis as block RAM.
|
|
--
|
|
-- Dependencies: -
|
|
-- Test bench: -
|
|
-- Target Devices: generic Spartan, Virtex
|
|
-- Tool versions: xst 8.2-14.7; ghdl 0.18-0.31
|
|
-- Revision History:
|
|
-- Date Rev Version Comment
|
|
-- 2011-11-08 422 1.0.4 now numeric_std clean
|
|
-- 2010-06-03 299 1.0.3 use sv_ prefix for shared variables
|
|
-- 2008-03-08 123 1.0.2 use std_..._arith, not _unsigned; use unsigned();
|
|
-- now initialize DO to all '0' at start
|
|
-- 2008-03-02 122 1.0.1 change generic default for BRAM models
|
|
-- 2007-06-03 45 1.0 Initial version
|
|
------------------------------------------------------------------------------
|
|
|
|
library ieee;
|
|
use ieee.std_logic_1164.all;
|
|
use ieee.numeric_std.all;
|
|
|
|
use work.slvtypes.all;
|
|
|
|
entity ram_2swsr_rfirst_gen is -- RAM, 2 sync r/w ports, read first
|
|
generic (
|
|
AWIDTH : positive := 11; -- address port width
|
|
DWIDTH : positive := 9); -- data port width
|
|
port(
|
|
CLKA : in slbit; -- clock port A
|
|
CLKB : in slbit; -- clock port B
|
|
ENA : in slbit; -- enable port A
|
|
ENB : in slbit; -- enable port B
|
|
WEA : in slbit; -- write enable port A
|
|
WEB : in slbit; -- write enable port B
|
|
ADDRA : in slv(AWIDTH-1 downto 0); -- address port A
|
|
ADDRB : in slv(AWIDTH-1 downto 0); -- address port B
|
|
DIA : in slv(DWIDTH-1 downto 0); -- data in port A
|
|
DIB : in slv(DWIDTH-1 downto 0); -- data in port B
|
|
DOA : out slv(DWIDTH-1 downto 0); -- data out port A
|
|
DOB : out slv(DWIDTH-1 downto 0) -- data out port B
|
|
);
|
|
end ram_2swsr_rfirst_gen;
|
|
|
|
|
|
architecture syn of ram_2swsr_rfirst_gen is
|
|
constant memsize : positive := 2**AWIDTH;
|
|
constant datzero : slv(DWIDTH-1 downto 0) := (others=>'0');
|
|
type ram_type is array (0 to memsize-1) of slv(DWIDTH-1 downto 0);
|
|
shared variable sv_ram : ram_type := (others=>datzero);
|
|
|
|
attribute ram_style : string;
|
|
attribute ram_style of sv_ram : variable is "block";
|
|
|
|
signal R_DOA : slv(DWIDTH-1 downto 0) := datzero;
|
|
signal R_DOB : slv(DWIDTH-1 downto 0) := datzero;
|
|
|
|
begin
|
|
|
|
proc_clka: process (CLKA)
|
|
begin
|
|
if rising_edge(CLKA) then
|
|
if ENA = '1' then
|
|
R_DOA <= sv_ram(to_integer(unsigned(ADDRA)));
|
|
if WEA = '1' then
|
|
sv_ram(to_integer(unsigned(ADDRA))) := DIA;
|
|
end if;
|
|
end if;
|
|
end if;
|
|
end process proc_clka;
|
|
|
|
proc_clkb: process (CLKB)
|
|
begin
|
|
if rising_edge(CLKB) then
|
|
if ENB = '1' then
|
|
R_DOB <= sv_ram(to_integer(unsigned(ADDRB)));
|
|
if WEB = '1' then
|
|
sv_ram(to_integer(unsigned(ADDRB))) := DIB;
|
|
end if;
|
|
end if;
|
|
end if;
|
|
end process proc_clkb;
|
|
|
|
DOA <= R_DOA;
|
|
DOB <= R_DOB;
|
|
|
|
end syn;
|