Product Documentation
Virtuoso ADE SKILL Reference
Product Version IC23.1, November 2023

nlPrintHeaderComments

nlPrintHeaderComments( 
o_formatter 
) 
=> t / nil

Description

Prints the comments for the netlist file, including the library, cell, and view names of the top-level cellview of the design netlisted. This method only has effect when the printFileComments netlist option is set.

Arguments

o_formatter

The formatter object.

Value Returned

t

The comments are printed.

nil

There is an error.

Examples

The following example prints the comments for the netlist file:

defmethod( nlPrintHeaderComments ((formatter
xyzFormatter) inst)
let( (nl)
nl = nlGetNetlister(formatter)
callNextMethod()
nl = nlGetNetlister(formatter)
nlPrintComment( nl "anything else")
) )
=> t


Return to top
 ⠀
X