8位相等比较器.txt
上传用户:easylife05
上传日期:2013-03-21
资源大小:42k
文件大小:0k
源码类别:

VHDL/FPGA/Verilog

开发平台:

C/C++

  1. -- 8-bit Identity Comparator
  2. -- uses 1993 std VHDL
  3. -- download from www.pld.com.cn & www.fpga.com.cn
  4. library IEEE;
  5. use IEEE.Std_logic_1164.all;
  6. entity HCT688 is  
  7.    port(Q, P : in std_logic_vector(7 downto 0);
  8.          GBAR : in std_logic; PEQ : out std_logic);
  9. end HCT688;
  10. architecture VER1 of HCT688 is
  11. begin
  12.    PEQ <= '0' when ((To_X01(P) = To_X01(Q)) and (GBAR = '0')) else '1';
  13. end VER1;