请设计一位二进制全加器组合逻辑电路。。
3个回答
展开全部
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
entity add1 is
port(a,b,cin:in std_logic;
co,s:out std_logic);
end add1;
architecture behave of add1 is
begin
process(a,b,cin)
variable n:integer range 0 to 3;
constant s_vector:
std_logic_vector(0 to 3):="1010";
constant co_vector:
std_logic_vector(0 to 3):="1100";
begin
n:=0;
if(a='1')then n:=n+1;
end if;
if(b='1')then n:=n+1;
end if;
if(cin='1')then n:=n+1;
end if;
s<=s_vector(n);
co<=co_vector(n);
end process;
end behave;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
entity add1 is
port(a,b,cin:in std_logic;
co,s:out std_logic);
end add1;
architecture behave of add1 is
begin
process(a,b,cin)
variable n:integer range 0 to 3;
constant s_vector:
std_logic_vector(0 to 3):="1010";
constant co_vector:
std_logic_vector(0 to 3):="1100";
begin
n:=0;
if(a='1')then n:=n+1;
end if;
if(b='1')then n:=n+1;
end if;
if(cin='1')then n:=n+1;
end if;
s<=s_vector(n);
co<=co_vector(n);
end process;
end behave;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
意法半导体(中国)投资有限公司
2023-06-12 广告
2023-06-12 广告
单片机复位电路原理通常包括以下几个主要步骤:1. 电平检测:单片机复位电路需要检测一个关键参数,即控制器的复位引脚是否处于高电平(2V)。如果复位引脚没有高电平,复位电路就会启动一个复位过程来清除单片机内部的错误状态并将其恢复到正常状态。2...
点击进入详情页
本回答由意法半导体(中国)投资有限公司提供
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
这位仁兄,是在做电子技术实验课吧。。。
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询