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

📄 io_ie.vhd

📁 DSP TMS320C6711D emif 扩展GPIO 时须
💻 VHD
字号:
library ieee;
use ieee.std_logic_1164.all;

entity io_ie is
	port( 	
			ED:inout std_logic_vector(15 downto 0);
			QED:out std_logic_vector(15 downto 0);
			NOE:in std_logic;
			CLK:in std_logic);
end entity;

architecture bevi of io_ie is
	begin 
	process(CLK)
	begin 
	if CLK'event and CLK='1' then
		if NOE='0'then  
			QED<=ED;
		else
			QED<="ZZZZZZZZZZZZZZZZ";
		end if;
	end if;
	end process;
end architecture;

⌨️ 快捷键说明

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