双2-4译码器:74139.txt
上传用户:easylife05
上传日期:2013-03-21
资源大小:42k
文件大小:1k
源码类别:

VHDL/FPGA/Verilog

开发平台:

C/C++

  1. -- Dual 2-to-4 Decoder
  2. -- A set of conditional signal assignments model a dual 2-to-4 decoder
  3. -- uses 1993 std VHDL
  4. -- download from: www.pld.com.cn & www.fpga.com.cn
  5. library IEEE;
  6. use IEEE.Std_logic_1164.all;
  7. entity HCT139 is  
  8.    port(A2, B2, G2BAR, A1, B1, G1BAR : in std_logic;
  9.             Y20, Y21, Y22, Y23, Y10, Y11, Y12, Y13 : out std_logic);
  10. end HCT139;
  11. architecture VER1 of HCT139 is
  12. begin
  13.    Y10 <= '0' when (B1 = '0') and ((A1 = '0') and (G1BAR = '0')) else '1';  
  14.    Y11 <= '0' when (B1 = '0') and ((A1 = '1') and (G1BAR = '0')) else '1';
  15.    Y12 <= '0' when (B1 = '1') and ((A1 = '0') and (G1BAR = '0')) else '1';
  16.    Y13 <= '0' when (B1 = '1') and ((A1 = '1') and (G1BAR = '0')) else '1';
  17.    Y20 <= '0' when (B2 = '0') and ((A2 = '0') and (G2BAR = '0')) else '1';  
  18.    Y21 <= '0' when (B2 = '0') and ((A2 = '1') and (G2BAR = '0')) else '1';
  19.    Y22 <= '0' when (B2 = '1') and ((A2 = '0') and (G2BAR = '0')) else '1';
  20.    Y23 <= '0' when (B2 = '1') and ((A2 = '1') and (G2BAR = '0')) else '1';
  21. end VER1