MITK-IGT
IGT Extension of MITK
Loading...
Searching...
No Matches
mux.vhdl
Go to the documentation of this file.
1
-------------------------------------------------------
4
-------------------------------------------------------
5
7
library
ieee
;
9
use
ieee.std_logic_1164.
all
;
10
12
15
entity
mux_using_with
is
16
port
(
17
din_0
:
in
std_logic
;
18
din_1
:
in
std_logic
;
19
sel
:
in
std_logic
;
20
mux_out
:
out
std_logic
21
)
;
22
end
entity
;
23
26
architecture
behavior
of
mux_using_with
is
27
begin
28
with
(
sel
)
select
29
mux_out
<=
din_0
when
'
0
'
,
30
din_1
when
others
;
31
end
architecture
;
32
mux_using_with
Mux entity brief description Detailed description of this mux design element.
Definition
mux.vhdl:15
mux_using_with.mux_out
out mux_outstd_logic
Mux output.
Definition
mux.vhdl:21
mux_using_with.din_0
in din_0std_logic
Mux first input.
Definition
mux.vhdl:17
mux_using_with.din_1
in din_1std_logic
Mux Second input.
Definition
mux.vhdl:18
mux_using_with.sel
in selstd_logic
Select input.
Definition
mux.vhdl:19
doxygen-1.12.0
examples
mux.vhdl
Generated by
1.12.0