sv-parser-pp 0.12.0

Helper crate of sv-parser
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module A;
`ifdef OPT_1
  //wire a = 1'b1;
`else
  wire a = 1'b0;
`endif
`ifdef DEBUG
  `ifdef OPT_2
  //wire b = 1'b1;
  `else
  wire b = 1'b0;
  `endif
`endif
endmodule