如何解决以下 vhdl 代码中出现的错误?

发布于 2024-11-07 17:31:44 字数 647 浏览 0 评论 0原文

错误为:“错误: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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

稳稳的幸福 2024-11-14 17:31:44

问题是您正在从两个进程内分配信号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 a if (rst_n='1') into the second process and assign the reset value of nfw there.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文