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
Value Returned
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