2025-09-06 13:51:49 +02:00
|
|
|
%Warning-PROCASSINIT: t/t_lint_procassinit_bad.v:26:20: Procedural assignment to declaration with initial value: 'flop_out'
|
2025-05-01 04:00:06 +02:00
|
|
|
: ... note: In instance 't'
|
|
|
|
|
: ... Location of variable initialization
|
2025-09-06 13:51:49 +02:00
|
|
|
26 | logic flop_out = 1;
|
|
|
|
|
| ^
|
|
|
|
|
t/t_lint_procassinit_bad.v:30:7: ... Location of variable process write
|
|
|
|
|
: ... Perhaps should initialize instead using a reset in this process
|
|
|
|
|
30 | flop_out <= ~in;
|
|
|
|
|
| ^~~~~~~~
|
2025-05-01 04:00:06 +02:00
|
|
|
... For warning description see https://verilator.org/warn/PROCASSINIT?v=latest
|
|
|
|
|
... Use "/* verilator lint_off PROCASSINIT */" and lint_on around source to disable this message.
|
2025-09-06 13:51:49 +02:00
|
|
|
%Warning-PROCASSINIT: t/t_lint_procassinit_bad.v:48:20: Procedural assignment to declaration with initial value: 'bad_comb'
|
2025-05-01 04:00:06 +02:00
|
|
|
: ... note: In instance 't'
|
|
|
|
|
: ... Location of variable initialization
|
2025-09-06 13:51:49 +02:00
|
|
|
48 | logic bad_comb = 1;
|
|
|
|
|
| ^
|
|
|
|
|
t/t_lint_procassinit_bad.v:51:5: ... Location of variable process write
|
2025-05-01 04:00:06 +02:00
|
|
|
: ... Perhaps should initialize instead using a reset in this process
|
2025-09-06 13:51:49 +02:00
|
|
|
51 | bad_comb = ok2;
|
|
|
|
|
| ^~~~~~~~
|
2025-05-01 04:00:06 +02:00
|
|
|
%Error: Exiting due to
|