这里有一段VHDL语言,有一个错误,怎么改正 5

if(clk'eventandclk='1')thenif(count="0111")thencount<="0000";elsecount<=count+1;endif... if(clk'event and clk='1')then
if(count="0111")then
count<="0000";
else
count<=count+1;
end if;
end if;
case count is
when"0000"=> daout<=d1;
when"0001"=> daout<=d2;
when"0010"=> daout<=d3;
when"0011"=> daout<=d4;
when"0100"=> daout<=d5;
when"0101"=> daout<=d6;
when"0110"=> daout<=d7;
when"0111"=> daout<=d8;
when others=>null;
end case;
Error (10309): VHDL Interface Declaration error in queue.vhd(192): interface object "d1" of mode out cannot be read. Change object mode to buffer.
展开
 我来答
155024知道
2017-12-31 · TA获得超过1950个赞
知道小有建树答主
回答量:3935
采纳率:11%
帮助的人:308万
展开全部
这个语句是个并行信号赋值语句,因此在这个并行语句当中,只能对y赋值一次,也就是说,在这个语句当中只能存在一个赋值号“<=”。
你的描述中,一个并行赋值语句却存在两个赋值号,所以出现错误。
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式