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 2007-2018 by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
4--
5------------------------------------------------------------------------------
6-- Package Name: sys_conf
7-- Description: Default definitions
8--
9-- Dependencies: -
10-- Tool versions: xst 8.1-14.7; viv 2014.4-2018.2; ghdl 0.18-0.34
11-- Revision History:
12-- Date Rev Version Comment
13-- 2018-09-22 1051 1.1.3 add missing config's
14-- 2016-05-28 770 1.1.2 sys_conf_mem_losize now type natural
15-- 2015-06-26 695 1.1.1 add sys_conf_dmscnt
16-- 2015-05-01 672 1.1 adopt to pdp11_sys70
17-- 2008-02-23 118 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 constant sys_conf_cache_fmiss : slbit := '0'; -- cache enabled
28 constant sys_conf_cache_twidth : integer := 9; -- 8kB cache
29
30 constant sys_conf_bram_awidth : integer := 15; -- 32 kB BRAM
31 constant sys_conf_mem_losize : natural := 8#000777#;-- 32 kByte
32
33 constant sys_conf_ibmon_awidth : integer := 9; -- use 0 to disable ibmon
34 constant sys_conf_dmscnt : boolean := true;
35 constant sys_conf_dmpcnt : boolean := true;
36 constant sys_conf_dmhbpt_nunit : integer := 2; -- use 0 to disable
37 constant sys_conf_dmcmon_awidth : integer := 8; -- use 0 to disable, 8 to use
38
39end package sys_conf;
40
std_logic slbit
Definition: slvtypes.vhd:30
boolean := true sys_conf_dmpcnt
Definition: sys_conf.vhd:49
slbit := '0' sys_conf_cache_fmiss
Definition: sys_conf.vhd:55
integer := 9 sys_conf_ibmon_awidth
Definition: sys_conf.vhd:46
natural := 8#167777# sys_conf_mem_losize
Definition: sys_conf.vhd:54
integer := 8 sys_conf_dmcmon_awidth
Definition: sys_conf.vhd:51
integer := 14 sys_conf_bram_awidth
boolean := false sys_conf_dmscnt
Definition: sys_conf.vhd:48
integer := 7 sys_conf_cache_twidth
Definition: sys_conf.vhd:56
integer := 2 sys_conf_dmhbpt_nunit
Definition: sys_conf.vhd:50