📄 parity_even2.vhd
字号:
LIBRARY IEEE;
USE IEEE.STD_LOGIC_1164.ALL;
ENTITY parity_even2 IS
PORT(a,b,c:IN STD_LOGIC;
we1:IN STD_LOGIC;
we2:OUT STD_LOGIC);
END parity_even2;
ARCHITECTURE parity_even2p OF parity_even2 IS
BEGIN
PROCESS(a,b,c,we1)
BEGIN
we2<=NOT(a XOR b XOR c XOR we1);
END PROCESS;
END parity_even2p ;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -