为什么这个 Verilog 代码无法编译?

发布于 2024-10-20 16:37:08 字数 215 浏览 3 评论 0原文

导致问题的部分是c[1] = p[0] + g[0] & c0;。有什么问题吗?

module CLA_gen(p, g, c0, c);
input [3:0] p;
input [3:0] g;
input c0;
output reg [4:1] c;
begin
c[1] = p[0] + g[0] & c0;
end
endmodule

The part that causes problems is c[1] = p[0] + g[0] & c0;. What's wrong with it?

module CLA_gen(p, g, c0, c);
input [3:0] p;
input [3:0] g;
input c0;
output reg [4:1] c;
begin
c[1] = p[0] + g[0] & c0;
end
endmodule

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(4

生来就爱笑 2024-10-27 16:37:08

您缺少始终阻止及其敏感度列表。

always @(*)
  c[1] = p[0] + g[0] & c0;

在上面发布的代码中,您不一定需要开始/结束,因为您只有一行。但将其添加到其中也没有什么坏处。

You're missing your always block and its sensitivity list.

always @(*)
  c[1] = p[0] + g[0] & c0;

In the code you posted above, you don't necessarily need the begin/end since you only have one line. But it doesn't not hurt to add it in there.

猫烠⑼条掵仅有一顆心 2024-10-27 16:37:08

您很可能希望将:更改

begin

为:

always @* begin

每个 begin/end 必须是另一个构造的一部分,例如 alwaysinitial 等。

You most likely want to change:

begin

to:

always @* begin

Every begin/end must be part of another construct, such as always, initial, etc.

千寻… 2024-10-27 16:37:08

删除开头和结尾
仅将 c 声明为输出

遵循此

module CLA_gen(p, g, c0, c);
input [3:0] p;
input [3:0] g;
input c0;
output [4:1] c;
assign c[1] = p[0] + g[0] & c0;
endmodule

Remove the begin and end
declare c only as an output

follow this

module CLA_gen(p, g, c0, c);
input [3:0] p;
input [3:0] g;
input c0;
output [4:1] c;
assign c[1] = p[0] + g[0] & c0;
endmodule
焚却相思 2024-10-27 16:37:08

您可能需要使用 <= 而不是 = 。

You might need to use <= instead of = .

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