如何解决以下 vhdl 代码中出现的错误?
错误为:“错误:Xst:528 - 信号 nfw 上的单元中的多源”。
process(rst_n,dword_int,sync_csw_reg,sync_dw_reg)
begin
if(rst_n='1')then
noofwords<="00000";
no_words<="00000";
nfw<='1';
elsif(falling_edge(sync_csw_reg) and dword_int(10)='0' and nfw='1' )then
noofwords<=dword_int(0 to 4);
check_nfw<=dword_int(0 to 4);
end if;
end process;
process(sync_dw_reg,noofwords)
begin
if(falling_edge(sync_dw_reg))then
if(no_words = noofwords)then
no_words<="00000";
nfw<='1';
else
no_words<= no_words+'1';
nfw<='0';
end if;
end if;
end process;
The error is: "ERROR:Xst:528 - Multi-source in Unit on signal nfw".
process(rst_n,dword_int,sync_csw_reg,sync_dw_reg)
begin
if(rst_n='1')then
noofwords<="00000";
no_words<="00000";
nfw<='1';
elsif(falling_edge(sync_csw_reg) and dword_int(10)='0' and nfw='1' )then
noofwords<=dword_int(0 to 4);
check_nfw<=dword_int(0 to 4);
end if;
end process;
process(sync_dw_reg,noofwords)
begin
if(falling_edge(sync_dw_reg))then
if(no_words = noofwords)then
no_words<="00000";
nfw<='1';
else
no_words<= no_words+'1';
nfw<='0';
end if;
end if;
end process;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
问题是您正在从两个进程内分配信号
nfw
。那是不可能的。您将必须使用两个不同的信号(如果您需要它们)并以某种方式将它们组合起来。回复:您可以将if (rst_n='1')
添加到第二个进程中,并在那里分配nfw
的重置值。The problem is that you are assigning the signal
nfw
from within two processes. That's not possible. You would have to use two different signals (if you need them) and somehow combine them combinationally. Resp.: You could add aif (rst_n='1')
into the second process and assign the reset value ofnfw
there.