VHDL中这有个错误,怎么改正?

LibraryIeee;UseIeee.std_logic_1164.all;EntityaIsport(u_d,cp:InStd_Logic;q2,q1,q0:OutS... Library Ieee;
Use Ieee.std_logic_1164.all;
Entity a Is
port(u_d,cp:In Std_Logic;
q2,q1,q0:Out Std_Logic);
End a;
Architecture b Of a Is
signal t0,t1,t2:Std_logic;
Begin
process(u_d,cp)
Begin
if u_d='1' then
t1 <= q0;
t2 <= q1 and q0;
elsif u_d='0' then
t1 <= not q0;
t2 <= not q1 and not q0;
end if;
if cp'EVENT AND cp='1'and (q2 /= '1' and q1 /= '0' and q0 /= '1') then
q0 <= not q0;
if t1 = '1' then
q1 <= not q1;
end if;
if t2 = '1' then
q2 <= not q2;
end if;
end if;
end process;
end b;

Error (10309): VHDL Interface Declaration error in a.vhd(13): interface object "q0" of mode out cannot be read. Change object mode to buffer.
展开
 我来答
鑫夕资剖史2906
2014-11-25
知道答主
回答量:1
采纳率:0%
帮助的人:2.2万
展开全部
q0:Out Std_Logicg改成q0:buffer Std_Logicg。因为在t1 <= q0;等中,作为Out的洞做和q0不允纳盯胡余许出现在右边。
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式