- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
每当我编译这段代码时,我都会收到以下错误。
module mv2_generate
(
input [127:0] c_array [1:0],
input [127:0] p_array [1:0],
input [127:0] p1_array [1:0],
output reg [15:0] min_mv
);
//genvar index;
integer a, b, index, m;
//genvar m;
// a= (m*7)+m+7;
// b= (m*7)+m;
reg [7:0] read_dataC; //registers for C,P,P'
reg [7:0] read_dataP;
reg [7:0] read_dataP1;
reg [15:0] out_pe0;
reg pe0_en;
pe PE0(.a(read_dataC),.b(read_dataP),.en(pe0_en),.pe_out(out_pe0));
always @*
begin
//generate
for (index=0; index<2; index=index+1)
begin
// assign n=n+1;
// a=7;
// b=0;
for (m=0; m<16; m=m+1)
begin
if(index<2)
begin
if (m>=0)
begin
read_dataC = c_array [index] [(m*7)+m+7:(m*7)+m];
read_dataP = p_array [index] [(m*7)+m+7:(m*7)+m];
// read_dataC = c_array [index] [a:b];
// read_dataP = p_array [index] [a:b];
#50;
$display("pe out: %d",out_pe0);
//pe PE0(read_dataC, read_dataP, out_pe0);
end
// a= a+8;
// b= b+8;
end
end
end
end
//endgenerate
//assign min_mv= out_pe0;
endmodule
//
module pe(input [7:0] a, input [7:0] b, input en, output reg [7:0] pe_out);
//reg [15:0] acc_temp = acc;
always @* begin
//$display("End of Sim: %d", en);
if(en) begin
if (a<b) begin
assign pe_out = b - a;
end
else if (a==b) begin
assign pe_out = 8'd0;
end
else begin
assign pe_out = a - b;
end
//acc_temp = acc_temp + pe_out;
//acc = acc_temp;
//$display("End of Sim: %d", acc);
end
else begin
pe_out = 8'd0;
end
end
endmodule
错误
ncverilog(64): 15.20-s029: (c) Copyright 1995-2017 Cadence Design Systems, Inc.
file: mv2test.v
read_dataC = c_array [index] [(m*7)+m+7:(m*7)+m];
|
ncvlog: *E,NOTPAR (mv2test.v,38|42): Illegal operand for constant expression [4(IEEE)].
read_dataC = c_array [index] [(m*7)+m+7:(m*7)+m];
|
ncvlog: *E,NOTPAR (mv2test.v,38|47): Illegal operand for constant expression [4(IEEE)].
read_dataC = c_array [index] [(m*7)+m+7:(m*7)+m];
|
ncvlog: *E,NOTPAR (mv2test.v,38|52): Illegal operand for constant expression [4(IEEE)].
read_dataC = c_array [index] [(m*7)+m+7:(m*7)+m];
|
ncvlog: *E,NOTPAR (mv2test.v,38|57): Illegal operand for constant expression [4(IEEE)].
read_dataP = p_array [index] [(m*7)+m+7:(m*7)+m];
|
ncvlog: *E,NOTPAR (mv2test.v,39|42): Illegal operand for constant expression [4(IEEE)].
read_dataP = p_array [index] [(m*7)+m+7:(m*7)+m];
|
ncvlog: *E,NOTPAR (mv2test.v,39|47): Illegal operand for constant expression [4(IEEE)].
read_dataP = p_array [index] [(m*7)+m+7:(m*7)+m];
|
ncvlog: *E,NOTPAR (mv2test.v,39|52): Illegal operand for constant expression [4(IEEE)].
read_dataP = p_array [index] [(m*7)+m+7:(m*7)+m];
|
ncvlog: *E,NOTPAR (mv2test.v,39|57): Illegal operand for constant expression [4(IEEE)].
module worklib.mv2_generate:v
errors: 8, warnings: 0
module pe(input [7:0] a, input [7:0] b, input en, output reg [7:0] pe_out);
|
ncvlog: *W,RECOME (mv2test.v,83|8): recompiling design unit worklib.pe:v.
First compiled from line 59 of mv2test.v.
ncverilog: *E,VLGERR: An error occurred during parsing. Review the log file for errors with the code *E and fix those identified problems to proceed. Exiting with code (status 1).
最佳答案
这在 Verilog(和 SystemVerilog)中是非法的:
c_array [index] [(m*7)+m+7:(m*7)+m];
具体来说,部分选择中:
的右侧不能有变量。相反,您需要这样写:
c_array [index] [(m*7)+m+7 -: 8];
或者这个:
c_array [index] [(m*7)+m +: 8];
-:
和 +:
运算符左侧的值是起始索引。右边的数字是宽度。这必须是恒定的。因此,你的错误。 -:
运算符从起始索引开始倒数; +:
运算符向上计数。原始数组声明的方向无关紧要:无论数组的方向如何,您都可以使用任一运算符。
关于verilog - 我的 verilog 代码出现此错误, "Illegal operation for constant expression",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60268113/
#include #include using namespace std; //void multiply(int b); int main() { float total = 0; flo
我正在尝试加载存储在 HDFS 中的 Hadoop 集群上的 informatica 日志文件。我在 Python 中使用 subprocess 来执行此操作,但相信由于文件名而出现错误,我不确定如何
我尝试制作用于 Symfony 2 上传的 ajax 脚本。Chrome 返回此错误: Uncaught TypeError: Illegal invocation jquery.min.js:4 我
这只是一个简单的代码,用于检查一个数字是否是质数,我不知道这是编译器还是代码的问题。如果您能提供一些帮助,我们将不胜感激。 这是代码: #include "stdio.h" int main() {
当我运行这个 bash 脚本时: if [ [$EUID -ne 0] ]; then echo "This script must be run as root" 1>&2 exit 1
我最近偶然发现了 this jcstress 中的示例: @JCStressTest @State @Outcome(id = "10", expect =
我不理解这个错误(C2100:非法间接)。我标记了三个实例——都在底部附近。我在网上看过,我知道这与我的指示有关,但在 8 小时后,我完全迷路了。这里可能还有其他一些错误,但我什至无法分辨,因为我无法
我们正在运行一个 Create React App (CRA) Web 应用程序,我们已向其中添加了 Google Analytics v4。我们使用 ga-4-react 启动分析npm 包。 in
我想将多个图像对象发布到 testphp.php。但控制台打印错误说非法调用。 我已经尝试过: submit $("#sub").click(function(){ // get th
当文本框为空时尝试禁用按钮时,我在 google chrome 控制台中收到此错误: function isEmpty() { var r = document.getElementById;
我只是在玩 timesheet.js的源代码(参见具体行)并遇到一个小错误,请参见下面的代码行: '', 当我生成 HTML 并将其分成两行时,一切正常,但如果我执行以下操作将
public class Flatten { public static int[] flatten(int[][] x) { int totalLength = 0;
我的计算机上有一个 python3 脚本,我可以使用 python3motion_detection.py 运行它,并且该脚本有效,我尝试在我的 Raspberry 上使用它,但失败并显示消息非法指令
我正在尝试最近学到的一些多线程概念,但无法运行它。 它给出了 IllegalMonitorStateException 但没有弄清楚错误发生的原因。 因此,关于代码2线程引用名称填充器和写入器都共享一
这是 html 这是脚本 $('#submit').click(function() { var files = $("[type='file']")[0].fil
我尝试通过ajax提交表单,下面是表单。 Date Upload File
我几天前买了 C++ Primer 这本书,我开始学习这门新语言了! 此刻,我想弄明白为什么我自己写的这个 block 是非法的: 我将一个 const int 初始化为 512;我初始化一个指向 n
我收到以下错误消息 [Err] 1267 - Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,C
我正在尝试使用本教程创建一个 PostgreSQL 数据库: http://tutorials.jumpstartlab.com/topics/environment/environment.html
我想弄乱 Speech Recognition API,所以我从简单的页面开始,该页面在单击 body 元素时开始识别。我的 scripts.js 文件是: var recognition = new
我是一名优秀的程序员,十分优秀!