ansCdlPrintConnections
ansCdlPrintConnections(&_fpl_connections)
Description
Customizes how the nets connected to a device are written in the auCdl netlist.
Arguments
|
File handle used to write the string in the netlist using the |
|
|
List of pairs of instance terminals and nets connected to the terminals. |
Value Returned
Examples
procedure( ansCdlPrintConnections(fp connections ) artFprintf( fp "$PINS " )
foreach( cn connections
artFprintf( fp "%s=%s " car(cn) cadr(cn) ) ))
Return to top