ModelSim 无法识别参数数据类型?

发布于 2024-10-24 05:07:53 字数 256 浏览 1 评论 0原文

这是我尝试在 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 技术交流群。

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

发布评论

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

评论(1

高冷爸爸 2024-10-31 05:07:53

您发布的代码最后一行的 Data_width 之间有一个空格。将其更改为:

input [Data_width-1:0] D;

The code you posted has a space between Data and _width in the last line. Change it to:

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