为什么这个 Verilog 代码无法编译?
导致问题的部分是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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您缺少始终阻止及其敏感度列表。
在上面发布的代码中,您不一定需要开始/结束,因为您只有一行。但将其添加到其中也没有什么坏处。
You're missing your always block and its sensitivity list.
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.
您很可能希望将:更改
为:
每个
begin/end
必须是另一个构造的一部分,例如always
、initial
等。You most likely want to change:
to:
Every
begin/end
must be part of another construct, such asalways
,initial
, etc.删除开头和结尾
仅将 c 声明为输出
遵循此
Remove the begin and end
declare c only as an output
follow this
您可能需要使用 <= 而不是 = 。
You might need to use <= instead of = .