read_nets
read_nets
-file s_fileName
[ -force_load [ true | false ] ]
Description
Returns a set that contains the nets named in the file. If a net named in the file cannot be found in the active design, a warning message is output.
Entry 'name' on line x was skipped. Failed to find net in design.
The command will automatically stop after 100 warnings are issued, unless you specify -force_load.
Arguments
Value Returned
|
Is the set containing the nets in the design that matched net names in the file. |
|
Examples
These commands create a variable named mySet that contains the nets listed in fileA, then highlights those nets in the artwork.
set mySet [ read_nets -file fileA ]
add_highlight -name myNets -set $mySet -color cyan
Related Topics
Return to top