2020-03-21 15:24:24 +00:00
|
|
|
%Warning-BLKSEQ: t/t_lint_blksync_bad.v:24:16: Blocking assignments (=) in sequential (flop or latch) block
|
2020-03-15 02:02:42 +00:00
|
|
|
: ... Suggest delayed assignments (<=)
|
2020-04-04 00:07:46 +00:00
|
|
|
24 | sync_blk = 1'b1;
|
|
|
|
| ^
|
2019-05-31 00:30:59 +00:00
|
|
|
... Use "/* verilator lint_off BLKSEQ */" and lint_on around source to disable this message.
|
2020-03-21 15:24:24 +00:00
|
|
|
%Warning-COMBDLY: t/t_lint_blksync_bad.v:31:18: Delayed assignments (<=) in non-clocked (non flop or latch) block
|
2020-03-15 02:02:42 +00:00
|
|
|
: ... Suggest blocking assignments (=)
|
2020-04-04 00:07:46 +00:00
|
|
|
31 | combo_nblk <= 1'b1;
|
|
|
|
| ^~
|
2019-05-31 00:30:59 +00:00
|
|
|
*** See the manual before disabling this,
|
|
|
|
else you may end up with different sim results.
|
2018-11-03 18:59:04 +00:00
|
|
|
%Error: Exiting due to
|