URL
https://opencores.org/ocsvn/marca/marca/trunk
Subversion Repositories marca
[/] [marca/] [trunk/] [vhdl/] [mem_ent.vhd] - Rev 2
Go to most recent revision | Compare with Previous | Blame | View Log
-- This file is part of the marca processor. -- Copyright (C) 2007 Wolfgang Puffitsch -- This program is free software; you can redistribute it and/or modify it -- under the terms of the GNU Library General Public License as published -- by the Free Software Foundation; either version 2, or (at your option) -- any later version. -- This program 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 -- Library General Public License for more details. -- You should have received a copy of the GNU Library General Public -- License along with this program; if not, write to the Free Software -- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA ------------------------------------------------------------------------------- -- MARCA memory unit ------------------------------------------------------------------------------- -- entity for the memory unit ------------------------------------------------------------------------------- ------------------------------------------------------------------------------- -- Wolfgang Puffitsch -- Computer Architecture Lab, Group 3 ------------------------------------------------------------------------------- library IEEE; use IEEE.std_logic_1164.all; use work.marca_pkg.all; entity mem is port ( clock : in std_logic; reset : in std_logic; op : in MEM_OP; address : in std_logic_vector(REG_WIDTH-1 downto 0); data : in std_logic_vector(REG_WIDTH-1 downto 0); exc : out std_logic; busy : out std_logic; result : out std_logic_vector(REG_WIDTH-1 downto 0); intrs : out std_logic_vector(VEC_COUNT-1 downto 3); ext_in : in std_logic_vector(IN_BITS-1 downto 0); ext_out : out std_logic_vector(OUT_BITS-1 downto 0)); end mem;
Go to most recent revision | Compare with Previous | Blame | View Log