-- Entitatea MUX2:1
LIBRARY IEEE;
USE IEEE.std_logic_1164.ALL;

ENTITY mux_2x1 IS
PORT ( i1  : IN  std_logic;
       i0  : IN  std_logic;
       sel : IN  std_logic;
       o   : OUT std_logic );
END mux_2x1;

