File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 2
2
23 | assign r = real'(a);
3
3
| ^~~~
4
4
... For error description see https://verilator.org/warn/UNSUPPORTED?v=latest
5
- %Error-UNSUPPORTED: t/t_math_wide_bad.v:22:18: Unsupported: operator POWSS operator of 576 bits exceeds hardcoded limit VL_MULS_MAX_WORDS in verilatedos.h
5
+ %Error-UNSUPPORTED: t/t_math_wide_bad.v:22:18: Unsupported: operator POWSS operator of 5472 bits exceeds hardcoded limit VL_MULS_MAX_WORDS in verilatedos.h
6
6
22 | assign z2 = a ** 3;
7
7
| ^~
8
- %Error-UNSUPPORTED: t/t_math_wide_bad.v:21:17: Unsupported: operator MULS operator of 576 bits exceeds hardcoded limit VL_MULS_MAX_WORDS in verilatedos.h
8
+ %Error-UNSUPPORTED: t/t_math_wide_bad.v:21:17: Unsupported: operator MULS operator of 5472 bits exceeds hardcoded limit VL_MULS_MAX_WORDS in verilatedos.h
9
9
21 | assign z = a * b;
10
10
| ^
11
11
%Error: Exiting due to
Original file line number Diff line number Diff line change @@ -11,11 +11,11 @@ module t (/*AUTOARG*/
11
11
a, b
12
12
);
13
13
14
- input signed [17 * 32 : 0 ] a;
15
- input signed [17 * 32 : 0 ] b;
14
+ input signed [170 * 32 : 0 ] a;
15
+ input signed [170 * 32 : 0 ] b;
16
16
17
- output signed [17 * 32 : 0 ] z ;
18
- output signed [17 * 32 : 0 ] z2;
17
+ output signed [170 * 32 : 0 ] z ;
18
+ output signed [170 * 32 : 0 ] z2;
19
19
output real r;
20
20
21
21
assign z = a * b;
You can’t perform that action at this time.
0 commit comments