aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue50/idct.d/muxb_322.vhd
blob: e54c9ffde6c08098edb66910ee11a0f73e6270e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
library ieee;
use ieee.std_logic_1164.all;

library ieee;
use ieee.numeric_std.all;

entity muxb_322 is
	port (
		in_sel : in  std_logic;
		out_data : out std_logic;
		in_data0 : in  std_logic;
		in_data1 : in  std_logic
	);
end muxb_322;

architecture augh of muxb_322 is
begin

	out_data <= in_data0 when in_sel = '0' else in_data1;

end architecture;