library ieee;
use ieee.std_logic_1164.all;
entity Mux4bit is
port ( s : in std_logic_vector(3 downto 0);
x : in std_logic_vector(3 downto 0);
y : in std_logic_vector(3 downto 0);
m : out std_logic_vector(3 downto 0));
end entity Mux4bit;
architecture df of Mux4bit is
begin
m <= ((not s) and x) or (s and y);
end df;
導覽連結: 首頁 -> 年份: 2007 -> 月份: 09 -> 標題: VHDL of 4 bit Multiplexer
2007年9月27日 星期四
VHDL of 4 bit Multiplexer
ARTICLE LABELS: Computer Design
訂閱:
張貼留言 (Atom)
0 COMMENT:
張貼留言