在用quartusII验证vhdl程序时发现的错误,是书上的例子.

libraryieee;useieee.std_logic_1164.all;useieee.std_logic_arith.all;useieee.std_logic_... library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_arith.all;
use ieee.std_logic_unsigned.all;

entity adder is
port( in1: in std_logic;
in2: in std_logic;
cntl: bit;
pout: out bit_vector);
end adder;
architecture func of adder is
begin
process(cntl)
begin
if(cntl='1') then pout<=in1+in2;
end if;
end process;
end func;
提示错误:Error (10327): VHDL error at adder.vhd(16): can't determine definition of operator ""+"" -- found 0 possible definitions
展开
 我来答
庐州第一C
2012-04-23 · 超过10用户采纳过TA的回答
知道答主
回答量:39
采纳率:100%
帮助的人:33.3万
展开全部
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_arith.all;
use ieee.std_logic_unsigned.all;

entity adder is
port( in1: in std_logic;
in2: in std_logic;
cntl: std_logic;
pout: out std_logic);
end adder;
architecture func of adder is
begin
process(cntl)
begin
if(cntl='1') then pout<=in1 and in2;
end if;
end process;
end func;
帮你改了下 应该可以用了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
pengxun523
2012-04-22 · 超过13用户采纳过TA的回答
知道答主
回答量:47
采纳率:0%
帮助的人:30.1万
展开全部
in1+in2 逻辑量不能加 要写成and or 之类的
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式