??
字號(hào):
library IEEE;
use IEEE.std_logic_1164.all;
entity emcomp4 is
port (
a: in STD_LOGIC_VECTOR (3 downto 0);
b: in STD_LOGIC_VECTOR (3 downto 0);
equals: out STD_LOGIC
);
end emcomp4;
architecture emcomp4_arch of emcomp4 is
begin
comp:process(a,b)
begin
if a=b then
equals<='1';
else
equals<='0';
end if;
end process comp;
end emcomp4_arch;
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -