blob: 6dba9d5945e712866fb2efe373663d352e00a286 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
library ieee;
use ieee.std_logic_1164.all;
entity case02 is
port (a : std_logic_vector (1 downto 0);
o : out std_logic);
end case02;
architecture behav of case02 is
begin
process (a)
begin
case a(1 downto 0) is
when "01" =>
o <= '1';
when others =>
o <= '0';
end case;
end process;
end behav;
|