mirror of
https://github.com/Gehstock/Mist_FPGA.git
synced 2026-02-16 12:42:49 +00:00
33 lines
1008 B
VHDL
33 lines
1008 B
VHDL
-------------------------------------------------------------------------------
|
|
--
|
|
-- $Id: dmem_ctrl_pack-p.vhd,v 1.1 2004/03/23 21:31:52 arniml Exp $
|
|
--
|
|
-- Copyright (c) 2004, Arnim Laeuger (arniml@opencores.org)
|
|
--
|
|
-- All rights reserved
|
|
--
|
|
-------------------------------------------------------------------------------
|
|
|
|
package dmem_ctrl_pack is
|
|
|
|
-----------------------------------------------------------------------------
|
|
-- Address Type Identifier
|
|
-----------------------------------------------------------------------------
|
|
type dmem_addr_ident_t is (DM_PLAIN,
|
|
DM_REG,
|
|
DM_STACK,
|
|
DM_STACK_HIGH);
|
|
|
|
end dmem_ctrl_pack;
|
|
|
|
|
|
-------------------------------------------------------------------------------
|
|
-- File History:
|
|
--
|
|
-- $Log: dmem_ctrl_pack-p.vhd,v $
|
|
-- Revision 1.1 2004/03/23 21:31:52 arniml
|
|
-- initial check-in
|
|
--
|
|
--
|
|
-------------------------------------------------------------------------------
|