VHDL4选1数据选择器 - 免费下载
源码资源
文件大小:10 K
💡 温馨提示:本资源由用户 cdga 上传分享,仅供学习交流使用。如有侵权,请联系我们删除。
VHDL编写的4选一数据选择器
entity mux41a is
port(a,b:in
std_logic;
s1,s2,s3,s4:in std_logic;
y:
out std_logic);
end entity mux41a;
architecture one of mux41a is
signal ab:std_logic_vector(1 downto 0);