-- -- Rcsid[] = "$Id: decod2_4.vhd,v 2.1 1993/10/06 01:04:36 alex Exp $"; -- entity decod2_4 is port(O: out bit_vector(3 downto 0); I: in bit_vector(1 downto 0)); end; architecture structure of decod2_4 is signal n0, n1: bit; begin U0 : inv_gate generic map(1,1) port map(n0,I(0)); U1 : inv_gate generic map(1,1) port map(n1,I(1)); U2 : and_gate generic map(1,1) port map(O(0),n0,n1); U3 : and_gate generic map(1,1) port map(O(1),I(0),n1); U4 : and_gate generic map(1,1) port map(O(2),n0,I(1)); U5 : and_gate generic map(1,1) port map(O(3),I(0),I(1)); end structure;