mirror of
https://github.com/wfjm/w11.git
synced 2026-02-13 19:54:59 +00:00
48 lines
1.7 KiB
VHDL
48 lines
1.7 KiB
VHDL
-- $Id: sys_conf.vhd 683 2015-05-17 21:54:35Z mueller $
|
|
--
|
|
-- Copyright 2015- by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
|
|
--
|
|
-- This program is free software; you may redistribute and/or modify it under
|
|
-- the terms of the GNU 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 General Public License
|
|
-- for complete details.
|
|
--
|
|
------------------------------------------------------------------------------
|
|
-- Package Name: sys_conf
|
|
-- Description: Default definitions for ibdr_maxisys
|
|
--
|
|
-- Dependencies: -
|
|
-- Tool versions: xst 14.7; viv 2014.4; ghdl 0.18-0.31
|
|
-- Revision History:
|
|
-- Date Rev Version Comment
|
|
-- 2015-03-14 658 1.0 Initial version
|
|
------------------------------------------------------------------------------
|
|
|
|
library ieee;
|
|
use ieee.std_logic_1164.all;
|
|
|
|
use work.slvtypes.all;
|
|
|
|
package sys_conf is
|
|
|
|
-- configure character and communication devices
|
|
constant sys_conf_ibd_dl11_1 : boolean := true; -- 2nd DL11
|
|
constant sys_conf_ibd_pc11 : boolean := true; -- PC11
|
|
constant sys_conf_ibd_lp11 : boolean := true; -- LP11
|
|
|
|
-- configure mass storage devices
|
|
constant sys_conf_ibd_rk11 : boolean := true; -- RK11
|
|
constant sys_conf_ibd_rl11 : boolean := true; -- RL11
|
|
constant sys_conf_ibd_rhrp : boolean := true; -- RHRP
|
|
constant sys_conf_ibd_tm11 : boolean := true; -- TM11
|
|
|
|
-- configure other devices
|
|
constant sys_conf_ibd_iist : boolean := true; -- IIST
|
|
|
|
end package sys_conf;
|
|
|