在线咨询
eetop公众号 创芯大讲堂 创芯人才网
切换到宽版

EETOP 创芯网论坛 (原名:电子顶级开发网)

手机号码,快捷登录

手机号码,快捷登录

找回密码

  登录   注册  

快捷导航
搜帖子
查看: 6174|回复: 0

哪位大虾指正一下错误在哪?

[复制链接]
发表于 2005-5-29 22:05:44 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有账号?注册

x
是一个mux,不过是1 to 4的
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_ARITH.ALL;
use IEEE.STD_LOGIC_UNSIGNED.ALL;
entity mux41 is
port(x,s0,s1:in std_logic;
      a,b,c,dut std_logic);
end mux41;
architecture mux_arch of mux41 is
signal indata:std_logic_vector(1 downto 0);
begin
indata<=s1&s0;
process(indata)
begin
   case indata is
   when "00" => a=<x;
   when "01" => b=<x;
   when "10" => c=<x;
   when "11" => d=<x;
   when others => a<='0';b<='0';c<='0';d<='0';
end case;
end process;
end mux_arch;
您需要登录后才可以回帖 登录 | 注册

本版积分规则

关闭

站长推荐 上一条 /1 下一条


小黑屋| 手机版| 关于我们| 联系我们| 隐私声明| EETOP 创芯网
( 京ICP备:10050787号 京公网安备:11010502037710 )

GMT+8, 2025-1-8 14:30 , Processed in 0.017833 second(s), 9 queries , Gzip On, Redis On.

eetop公众号 创芯大讲堂 创芯人才网
快速回复 返回顶部 返回列表