git-svn-id: http://moon:8086/svn/vhdl/trunk@1512 cc03376c-175c-47c8-b038-4cd826a8556b
81 lines
2.3 KiB
VHDL
81 lines
2.3 KiB
VHDL
-------------------------------------------------------------------------
|
|
-- Project: JCPU, a portable 8-bit RISC CPU written in VHDL
|
|
-- This file: Dual-ported register file with asynchrous read
|
|
|
|
-- Copyright (C) 2007 J. Ahrensfeld
|
|
|
|
-- This library is free software; you can redistribute it and/or
|
|
-- modify it under the terms of the GNU Lesser General Public
|
|
-- License as published by the Free Software Foundation; either
|
|
-- version 2.1 of the License, or (at your option) any later version.
|
|
|
|
-- This library is distributed in the hope that it will be useful,
|
|
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
-- Lesser General Public License for more details.
|
|
|
|
-- You should have received a copy of the GNU Lesser General Public
|
|
-- License along with this library; if not, write to the Free Software
|
|
-- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
-- For questions and ideas, please contact the author at jens@jayfield.org
|
|
|
|
-----------------------------------------------------------------------
|
|
-- $Header: D:\usr\cvsroot/VHDL/lib/misc/dpram_1w2r1c_xil.vhd,v 1.1 2013/02/07 14:15:38 jens Exp $
|
|
-----------------------------------------------------------------------
|
|
|
|
library IEEE;
|
|
use IEEE.STD_LOGIC_1164.ALL;
|
|
use IEEE.numeric_std.ALL;
|
|
|
|
entity dpram_1w2r1c is
|
|
Generic
|
|
(
|
|
addr_width : integer := 3;
|
|
data_width : integer := 8
|
|
);
|
|
Port
|
|
(
|
|
clk : in STD_LOGIC;
|
|
en_a : in STD_LOGIC;
|
|
en_b : in STD_LOGIC;
|
|
we_a : in STD_LOGIC;
|
|
addr_a : in unsigned (addr_width-1 downto 0);
|
|
addr_b : in unsigned (addr_width-1 downto 0);
|
|
din_a : in unsigned (data_width-1 downto 0);
|
|
dout_a : out unsigned (data_width-1 downto 0);
|
|
dout_b : out unsigned (data_width-1 downto 0)
|
|
);
|
|
end dpram_1w2r1c;
|
|
|
|
architecture Behavioral of dpram_1w2r1c is
|
|
|
|
|
|
begin
|
|
|
|
inst_dpram: entity work.dpram_2w2r2c
|
|
GENERIC MAP
|
|
(
|
|
addr_width => addr_width,
|
|
data_width => data_width
|
|
)
|
|
PORT MAP
|
|
(
|
|
clk_a => clk,
|
|
clk_b => clk,
|
|
en_a => en_a,
|
|
en_b => en_b,
|
|
we_a => we_a,
|
|
we_b => '0',
|
|
addr_a => addr_a,
|
|
addr_b => addr_b,
|
|
din_a => din_a,
|
|
din_b => din_a,
|
|
dout_a => dout_a,
|
|
dout_b => dout_b
|
|
);
|
|
|
|
|
|
end Behavioral;
|
|
|