ansCdlPrintModuleName
ansCdlPrintModuleName(
&_fp
g_isAPrimitive
S_inst
S_master
S_parent
t_appedModuleName
)
Description
Customizes how module names are written in the auCdl netlist for subcircuits.
Arguments
|
&_fpt
|
File handle used to write the string in the netlist using the artFprintf SKILL function.
|
|
g_isAPrimitive
|
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 master device for the current instance being printed in the netlist.
|
|
S_parent
|
Database ID of the cell for the current instance being printed in the netlist.
|
|
t_mappedModuleName
|
Module name which auCdl would write by default for subcircuits.
|
Value Returned
None
Examples
procedure( ansCdlPrintModuleName(fp isAPrimitive inst master parent mappedModuleName)
unless( isAPrimitive
artFprintf( fp " / %s " mappedModuleName )
))
Return to top