mux_type_package.vhd
来自「avr core porocesssor vhdl source code」· VHDL 代码 · 共 12 行
VHD
12 行
--************************************************************************************************
-- Types definitions for AVR core
-- Version 2.0
-- Designed by Ruslan Lepetenok 05.11.2001
--************************************************************************************************
library IEEE;
use IEEE.std_logic_1164.all;
package mux_type_package is
constant ext_mux_in_num : integer := 63;
type ext_mux_din_type is array(0 to ext_mux_in_num) of std_logic_vector(7 downto 0);
subtype ext_mux_en_type is std_logic_vector(0 to ext_mux_in_num);
end package mux_type_package;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?