Voneline Examples
With the following Verilog input:
`define foo bar
module test;
input a,b,c,
d,
e,
f;
cell1
cell1
(
.a(a), .b(b),
.c(c));
cell2 cell2 (.a(a));
cell3 cell3 (.a(a));
endmodule
Voneline produces:
`define foo bar module test; input a,b,c, d, e, f; cell1 cell1 ( .a(a), .b(b), .c(c)); cell2 cell2 (.a(a)); cell3 cell3 (.a(a)); endmodule
It's now easier to find or remove a cell with a "grep cell1".
![[logo]](/img/veripool_small.gif)