📄 mux4_1_4bits.vhd
字号:
------------------------------------------------------------------------
-- mux4_1_4bits.vhd --
------------------------------------------------------------------------
-- Authors : Albert Zemba & Mihai Cucicea
------------------------------------------------------------------------
-- Software version: Xilinx ISE 7.1i
-- WebPack
------------------------------------------------------------------------
-- This source file contains the mux4_1_4bits component
------------------------------------------------------------------------
-- Behavioral description
-- A 4:1 Mux with 4 bits inputs and output
------------------------------------------------------------------------
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_ARITH.ALL;
use IEEE.STD_LOGIC_UNSIGNED.ALL;
entity mux4_1_4bits is
port( i0,i1,i2,i3:in std_logic_vector (3 downto 0);
s:in std_logic_vector (1 downto 0);
o:out std_logic_vector (3 downto 0)
);
end mux4_1_4bits;
architecture Behavioral of mux4_1_4bits is
begin
process (i0,i1,i2,i3,s)
begin
if (s="00") then o<=i0; end if;
if (s="01") then o<=i1; end if;
if (s="10") then o<=i2; end if;
if (s="11") then o<=i3; end if;
end process;
end Behavioral;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -