You are on page 1of 1

architecture muxcase2x1 of muxcase2x1 is

begin
process (S,I)
begin
case S is
when '0' => Y <= I(0);
when others => Y <= I(1);

end case;
end process;

You might also like