ModelSim 无法识别参数数据类型?
这是我尝试在 Modelsim 中运行的一些 Verilog 代码。
parameter Data_width = 8; //DATA SIZE
input CLK, RST;
input [Data _width-1:0] D;
当我尝试编译它时,编译器在最后一行抱怨 Data_width ,说它需要一个标识符。我可以对其中的数字进行硬编码以解决问题,但我更喜欢使用变量,以防我想更改它,这样我就不必更改它。如何解决这个问题?
Here is some Verilog code that I'm trying to run in Modelsim.
parameter Data_width = 8; //DATA SIZE
input CLK, RST;
input [Data _width-1:0] D;
When I try to compile it, the compiler complains about Data_width in the last line, saying that it expects an identifier. I could hardcode the number in there to get rid of the problem, but I would prefer to use a variable in case I want to change it so I don't have to change it. How can this be fixed?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您发布的代码最后一行的
Data
和_width
之间有一个空格。将其更改为:The code you posted has a space between
Data
and_width
in the last line. Change it to: