mirror of
https://github.com/verilator/verilator.git
synced 2026-09-07 10:01:11 +02:00
13 lines
298 B
ReStructuredText
13 lines
298 B
ReStructuredText
.. comment: generated by t_lint_procassinit_bad
|
|
.. code-block:: sv
|
|
:linenos:
|
|
:emphasize-lines: 1,5
|
|
|
|
logic flop_out = 1; // <--- Warning
|
|
|
|
always @(posedge clk, negedge reset_l) begin
|
|
if (enable) begin
|
|
flop_out <= ~in; // <--- Use of initialized
|
|
end
|
|
end
|