w11 - vhd 0.794
W11 CPU core and support modules
Loading...
Searching...
No Matches
sys_conf.vhd
Go to the documentation of this file.
1-- $Id: sys_conf.vhd 1181 2019-07-08 17:00:50Z mueller $
2-- SPDX-License-Identifier: GPL-3.0-or-later
3-- Copyright 2015-2019 by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
4--
5------------------------------------------------------------------------------
6-- Package Name: sys_conf
7-- Description: Default definitions for ibdr_maxisys
8--
9-- Dependencies: -
10-- Tool versions: xst 14.7; viv 2014.4-2018.3; ghdl 0.18-0.35
11-- Revision History:
12-- Date Rev Version Comment
13-- 2019-05-04 1146 1.1.1 add sys_conf_ibd_m9312
14-- 2019-02-09 1110 1.1 use typ for DL,PC,LP; add dz11
15-- 2018-09-08 1043 1.0.2 add sys_conf_ibd_kw11p
16-- 2017-01-29 847 1.0.1 add sys_conf_ibd_deuna
17-- 2015-03-14 658 1.0 Initial version
18------------------------------------------------------------------------------
19
20library ieee;
21use ieee.std_logic_1164.all;
22
23use work.slvtypes.all;
24
25package sys_conf is
26
27 -- configure character and communication devices
28 -- typ for DL,DZ,PC,LP: -1->none; 0->unbuffered; 4-7 buffered (typ=AWIDTH)
29 constant sys_conf_ibd_dl11_0 : integer := 4; -- 1st DL11
30 constant sys_conf_ibd_dl11_1 : integer := 4; -- 2nd DL11
31 constant sys_conf_ibd_dz11 : integer := 5; -- DZ11
32 constant sys_conf_ibd_pc11 : integer := 4; -- PC11
33 constant sys_conf_ibd_lp11 : integer := 5; -- LP11
34 constant sys_conf_ibd_deuna : boolean := true; -- DEUNA
35
36 -- configure mass storage devices
37 constant sys_conf_ibd_rk11 : boolean := true; -- RK11
38 constant sys_conf_ibd_rl11 : boolean := true; -- RL11
39 constant sys_conf_ibd_rhrp : boolean := true; -- RHRP
40 constant sys_conf_ibd_tm11 : boolean := true; -- TM11
41
42 -- configure other devices
43 constant sys_conf_ibd_iist : boolean := true; -- IIST
44 constant sys_conf_ibd_kw11p : boolean := true; -- KW11P
45 constant sys_conf_ibd_m9312 : boolean := true; -- M9312
46
47end package sys_conf;
48
boolean := true sys_conf_ibd_kw11p
Definition: sys_conf.vhd:44
integer := 5 sys_conf_ibd_dz11
Definition: sys_conf.vhd:31
boolean := true sys_conf_ibd_rl11
Definition: sys_conf.vhd:38
boolean := true sys_conf_ibd_iist
Definition: sys_conf.vhd:43
integer := 4 sys_conf_ibd_pc11
Definition: sys_conf.vhd:32
integer := 5 sys_conf_ibd_lp11
Definition: sys_conf.vhd:33
boolean := true sys_conf_ibd_tm11
Definition: sys_conf.vhd:40
boolean := true sys_conf_ibd_rk11
Definition: sys_conf.vhd:37
integer := 4 sys_conf_ibd_dl11_0
Definition: sys_conf.vhd:29
boolean := true sys_conf_ibd_deuna
Definition: sys_conf.vhd:34
integer := 4 sys_conf_ibd_dl11_1
Definition: sys_conf.vhd:30
boolean := true sys_conf_ibd_rhrp
Definition: sys_conf.vhd:39
boolean := true sys_conf_ibd_m9312
Definition: sys_conf.vhd:45