⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cache_config.vhd

📁 用VHDL语言实现的ARM处理器的标准内核的源代码程序
💻 VHD
字号:
library IEEE;use IEEE.std_logic_1164.all;use IEEE.std_logic_arith.all;package cache_config is------------------------------------------------------------------------------- Automatically generated by vhdl/mem/cache/config.pl from of .config-----------------------------------------------------------------------------type cfg_repl_type is (cfg_repl_rnd, cfg_repl_lrr, cfg_repl_lru );-- icacheconstant CFG_IC_SETS     : integer range 1 to 4  := 1;  -- 1-4 setsconstant CFG_IC_SET_SZ   : integer range 1 to 64 := 1;  -- 1-64 kbconstant CFG_IC_TLINE_SZ  : integer range 2 to 8  := 4; -- 2-8 wordsconstant CFG_IC_DLINE_SZ  : integer range 1 to 4  := 1; -- 1-4 wordsconstant CFG_IC_ADDR_SZ  : integer := 32;constant CFG_IC_LOCK  : boolean := false;constant CFG_IC_REPL  : cfg_repl_type := cfg_repl_rnd;-- dcacheconstant CFG_DC_SETS     : integer range 1 to 4  := 1;   -- 1-4 setsconstant CFG_DC_SET_SZ   : integer range 1 to 64 := 1;   -- 1-64 kbconstant CFG_DC_TLINE_SZ  : integer range 2 to 8  := 4;  -- 2-8 wordsconstant CFG_DC_DLINE_SZ  : integer range 1 to 8 := 1;  -- 1-4 wordsconstant CFG_DC_ADDR_SZ  : integer := 32;constant CFG_DC_LOCK  : boolean := false;constant CFG_DC_REPL  : cfg_repl_type := cfg_repl_rnd;-- writebufferconstant CFG_WBBUF_SZ  : integer range 1 to 16  := 2; ------------------------------------------------------------------------------- end of automatic configuration-----------------------------------------------------------------------------end cache_config;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -