2022-04-29 17:32:02 +02:00
|
|
|
%Warning-BLKSEQ: t/t_lint_blksync_bad.v:24:16: Blocking assignment '=' in sequential logic process
|
|
|
|
|
: ... Suggest using delayed assignment '<='
|
2020-04-04 02:07:46 +02:00
|
|
|
24 | sync_blk = 1'b1;
|
|
|
|
|
| ^
|
2021-04-24 16:33:49 +02:00
|
|
|
... For warning description see https://verilator.org/warn/BLKSEQ?v=latest
|
2019-05-31 02:30:59 +02:00
|
|
|
... Use "/* verilator lint_off BLKSEQ */" and lint_on around source to disable this message.
|
2022-04-29 17:32:02 +02:00
|
|
|
%Warning-BLKSEQ: t/t_lint_blksync_bad.v:25:17: Blocking assignment '=' in sequential logic process
|
|
|
|
|
: ... Suggest using delayed assignment '<='
|
|
|
|
|
25 | sync_blk2 = 1'b1;
|
|
|
|
|
| ^
|
|
|
|
|
%Warning-COMBDLY: t/t_lint_blksync_bad.v:31:18: Non-blocking assignment '<=' in combinational logic process
|
|
|
|
|
: ... This will be executed as a blocking assignment '='!
|
2020-04-04 02:07:46 +02:00
|
|
|
31 | combo_nblk <= 1'b1;
|
|
|
|
|
| ^~
|
2021-04-18 17:52:29 +02:00
|
|
|
*** See https://verilator.org/warn/COMBDLY before disabling this,
|
2019-05-31 02:30:59 +02:00
|
|
|
else you may end up with different sim results.
|
2018-11-03 19:59:04 +01:00
|
|
|
%Error: Exiting due to
|