decode.vhi
来自「用ISE中各种工具设计“运动计时表”.加深对FPGA/CPLD设计流程的理解」· VHI 代码 · 共 22 行
VHI
22 行
-- VHDL Instantiation Created from source file decode.vhd -- 18:13:42 12/19/2002
--
-- Notes:
-- 1) This instantiation template has been automatically generated using types
-- std_logic and std_logic_vector for the ports of the instantiated module
-- 2) To use this template to instantiate this entity, cut-and-paste and then edit
COMPONENT decode
PORT(
binary : IN std_logic_vector(3 downto 0);
one_hot : OUT std_logic_vector(9 downto 0)
);
END COMPONENT;
Inst_decode: decode PORT MAP(
binary => ,
one_hot =>
);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?