13.5 Disable Format for Code SectionsWhen format is disabled, a code section is completely ignored, that is it is not formatted, nor it contributes to formatting. input hclk;
// @formatter:off
input n_hreset;
input hsel;
// @formatter:on
input [31:0] haddr;
input [1:0] htrans;
input [2:0] hsize;
input [31:0] hwdata;
input hwrite;
input hready_in;
submod1 inst1(
.p1(c1), // comment 1
.p22(c22[2]) // comment 2
.p33(c33[3]) /* @formatter:skip */
);
|