📄 io_ie.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 + -