16 lines
361 B
ReStructuredText
16 lines
361 B
ReStructuredText
.. comment: generated by t_lint_procassinit_bad
|
|
.. code-block:: sv
|
|
:linenos:
|
|
:emphasize-lines: 5
|
|
|
|
logic flop2_out;
|
|
|
|
always @(posedge clk, negedge reset_l) begin
|
|
if (!reset_l) begin
|
|
flop2_out <= '1; // <--- Added reset init
|
|
end
|
|
else if (enable) begin
|
|
flop2_out <= ~in;
|
|
end
|
|
end
|