15_mvl7_syn_types.vhd
来自「北京里工大学ASIC设计研究所的100个 VHDL程序设计例子」· VHDL 代码 · 共 20 行
VHD
20 行
--------------------------------------------------------------------------
-- SOME VHDL DATA TYPES TO FACILITATE SYNTHESIS
-- Developed on Nov 1, 1991 by :
-- Indraneel Ghosh,
-- CADLAB,
-- Univ. of Calif. , Irvine.
--------------------------------------------------------------------------
use work.TYPES.all;
package SYNTHESIS_TYPES is
subtype clock is MVL7;
type Memory is array (integer range <>) of MVL7_vector(3 downto 0);
type Memory_12_bit is array (integer range <>) of MVL7_vector(11 downto 0);
end SYNTHESIS_TYPES;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?