8位总线收发器:74245.txt
上传用户:easylife05
上传日期:2013-03-21
资源大小:42k
文件大小:1k
源码类别:

VHDL/FPGA/Verilog

开发平台:

C/C++

  1. -- Octal Bus Transceiver
  2. -- This example shows the use of the high impedance literal 'Z' provided by std_logic.
  3. -- The aggregate '(others => 'Z')' means all of the bits of B must be forced to 'Z'. 
  4. -- Ports A and B must be resolved for this model to work correctly (hence std_logic rather than std_ulogic). 
  5. -- download from: www.pld.com.cn & www.fpga.com.cn
  6. library IEEE;   
  7. use IEEE.Std_logic_1164.all;
  8. entity HCT245 is
  9.    port(A, B : inout std_logic_vector(7 downto 0);
  10.          DIR, GBAR : in std_logic);
  11. end HCT245;
  12. architecture VER1 of HCT245 is
  13. begin
  14.    A <= B when (GBAR = '0') and (DIR = '0') else (others => 'Z');
  15.    B <= A when (GBAR = '0') and (DIR = '1') else (others => 'Z');
  16. end VER1;