-- +-----------------------------+ -- | Library: multiplexer | -- | designer : Tim Pagden | -- | opened: 14 May 1995 | -- +-----------------------------+ -- Function: 32-bit demultiplexer library ieee; use ieee.std_logic_1164.all; entity demux_32 is port ( a : in std_ulogic_vector(4 downto 0); enable : in std_ulogic; y : out std_ulogic_vector(31 downto 0) ); end demux_32;