Skip to content

Commit c425978

Browse files
committed
doc: vpr: cmd: add info on unconnected ports handling in verilog netlist
Signed-off-by: Pawel Czarnecki <[email protected]>
1 parent a812abf commit c425978

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

doc/src/vpr/command_line_usage.rst

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1237,6 +1237,26 @@ Analysis Options
12371237

12381238
**Default:** ``off``
12391239

1240+
.. option:: --post_synth_netlist_unconn_inputs { unconnected | nets | gnd | vcc }
1241+
1242+
Controls how unconnected input cell ports are handled in the post-synthesis netlist
1243+
1244+
* unconnected: leave unconnected
1245+
* nets: connect each unconnected input pin to its own separate undriven net named: ``__vpr__unconn<ID>``, where ``<ID>`` is index assigned to this occurrence of unconnected port in design
1246+
* gnd: tie all to ground (``1'b0``)
1247+
* vcc: tie all to VCC (``1'b1``)
1248+
1249+
**Default:** ``unconnected``
1250+
1251+
.. option:: --post_synth_netlist_unconn_outputs { unconnected | nets }
1252+
1253+
Controls how unconnected output cell ports are handled in the post-synthesis netlist
1254+
1255+
* unconnected: leave unconnected
1256+
* nets: connect each unconnected output pin to its own separate undriven net named: ``__vpr__unconn<ID>``, where ``<ID>`` is index assigned to this occurrence of unconnected port in design
1257+
1258+
**Default:** ``unconnected``
1259+
12401260
.. option:: --timing_report_npaths <int>
12411261

12421262
Controls how many timing paths are reported.

0 commit comments

Comments
 (0)