File size: 480 Bytes
b8d41f7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
<h3 id='___compare_nets'>compare_nets</h3> <pre>Check equivalence of two nets in the reference and implementation netlist <b>Usage:</b> my $result = compare_nets($net0, $net1, @options); $net0: The net in the reference netlist. $net1: The net in the implementation netlist. @options: $result: 1, they are equal, 0, they are not equal. <b>Examples:</b> #1 Compare reg1/D in the reference and reg1/D in the implementation netlist compare_nets("reg1/D", "reg1/D"); </pre> |