entity dec24 is
port(
entrada: in std_logic_vector( 1 downto 0 );
salida: out std_logic_vector( 3 downto 0 );
... );
end dec24;
architecture arch of dec24 is
begin
...
case entrada is
when B"00" => ...
when B"01" =>
end case;
...
end arch;