2025-09-21 19:02:50 +02:00
|
|
|
%Warning-BLKSEQ: t/t_lint_blkseq_bad.v:22:14: Blocking assignment '=' in sequential logic process
|
|
|
|
|
: ... note: In instance 't'
|
2025-09-21 18:56:01 +02:00
|
|
|
: ... Suggest using delayed assignment '<='
|
2025-09-21 19:02:50 +02:00
|
|
|
22 | 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.
|
2025-09-21 19:02:50 +02:00
|
|
|
%Warning-BLKSEQ: t/t_lint_blkseq_bad.v:23:15: Blocking assignment '=' in sequential logic process
|
|
|
|
|
: ... note: In instance 't'
|
2025-09-21 18:56:01 +02:00
|
|
|
: ... Suggest using delayed assignment '<='
|
2025-09-21 19:02:50 +02:00
|
|
|
23 | sync_blk2 = 1'b1;
|
|
|
|
|
| ^
|
|
|
|
|
%Warning-BLKSEQ: t/t_lint_blkseq_bad.v:66:29: Blocking assignment '=' in sequential logic process
|
|
|
|
|
: ... note: In instance 't.a'
|
|
|
|
|
: ... Suggest using delayed assignment '<='
|
|
|
|
|
66 | always @(posedge clk) out = 1;
|
|
|
|
|
| ^
|
|
|
|
|
%Warning-BLKSEQ: t/t_lint_blkseq_bad.v:75:29: Blocking assignment '=' in sequential logic process
|
|
|
|
|
: ... note: In instance 't.b'
|
|
|
|
|
: ... Suggest using delayed assignment '<='
|
|
|
|
|
75 | always @(posedge clk) out = 1;
|
|
|
|
|
| ^
|
|
|
|
|
%Warning-COMBDLY: t/t_lint_blkseq_bad.v:29:16: Non-blocking assignment '<=' in combinational logic process
|
2025-09-21 18:56:01 +02:00
|
|
|
: ... This will be executed as a blocking assignment '='!
|
2025-09-21 19:02:50 +02:00
|
|
|
29 | combo_nblk <= 1'b1;
|
|
|
|
|
| ^~
|
2025-04-05 23:10:28 +02:00
|
|
|
... For warning description see https://verilator.org/warn/COMBDLY?v=latest
|
|
|
|
|
... Use "/* verilator lint_off COMBDLY */" and lint_on around source to disable this message.
|
|
|
|
|
*** See https://verilator.org/warn/COMBDLY?v=latest 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
|