ex_p2_17_parity.vhd

来自「This is the course for VHDL programming」· VHDL 代码 · 共 7 行

VHD
7
字号
entity PARITY is   port (A: in BIT_VECTOR(3 downto 0); P: out BIT);end PARITY;architecture A1 of PARITY isbegin   P <= A(0) xor A(1) xor A(2) xor A(3);end A1;

⌨️ 快捷键说明

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