ansCdlPrintInstName
ansCdlPrintInstName(
&_fp
t_prefix
t_name
t_mappedName
g_isPrimitive
S_inst
S_master
)
Description
Customizes how instance names are written in the auCdl netlist.
Arguments
|
&_fp
|
File handle used to write the string in the netlist using the artFprintf SKILL function.
|
|
t_prefix
|
Name prefix defined in the device CDF.
|
|
t_name
|
Instance name specified for the instance.
|
|
t_mappedName
|
Mapped name which auCdl would otherwise use to print instance name.
|
|
g_isPrimitive
|
Whether this is an instance of a leaf-level device (primitive).
|
|
S_inst
|
Database ID of the current instance being printed in the netlist.
|
|
S_master
|
Database ID of the switch master of the current instance being printed in the netlist.
|
Value Returned
None
Examples
procedure( ansCdlPrintInstName(fp prefix name mappedName isPrimitive inst master)
artFprintf(fp "%s " mappedName ))
Return to top