indent
This commit is contained in:
@@ -8,7 +8,7 @@ module clk_gen #(parameter DIVISION=22)(
|
|||||||
|
|
||||||
/* verilator lint_off PINCONNECTEMPTY */
|
/* verilator lint_off PINCONNECTEMPTY */
|
||||||
/* verilator lint_off PINMISSING */
|
/* verilator lint_off PINMISSING */
|
||||||
reg [DIVISION-1:0] counter = 0;
|
reg [DIVISION-1:0] counter = 0;
|
||||||
`ifdef VERILATOR
|
`ifdef VERILATOR
|
||||||
always @(posedge i_clk) begin
|
always @(posedge i_clk) begin
|
||||||
counter <= counter + 1;
|
counter <= counter + 1;
|
||||||
@@ -22,7 +22,7 @@ module clk_gen #(parameter DIVISION=22)(
|
|||||||
end
|
end
|
||||||
`endif
|
`endif
|
||||||
|
|
||||||
assign o_div_clk = counter[DIVISION-1];
|
assign o_div_clk = counter[DIVISION-1];
|
||||||
/* verilator lint_on PINCONNECTEMPTY */
|
/* verilator lint_on PINCONNECTEMPTY */
|
||||||
/* verilator lint_on PINMISSING */
|
/* verilator lint_on PINMISSING */
|
||||||
endmodule
|
endmodule
|
||||||
|
|||||||
Reference in New Issue
Block a user