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

nlPrintInstSignals

nlPrintInstSignals( 
o_formatter 
o_instance 
) 
=> t / nil

Description

Prints the simulator names of the signals according to the terminal order specified on the component, using the nlGetSignalList method of the instance.

Arguments

o_formatter

The formatter object.

o_instance

The object representing the instance.

Value Returned

t

The simulator names of the signals are printed.

nil

There is an error.

Examples

The following example prints the simulator names of the signals:

defmethod( nlPrintInstSignals ((formatter
xyzFormatter) inst)
let( (sigs (fp nlGetNetlister(formatter)) )
;; print terminals
when( sigs = (nlGetSignalList inst)
foreach( sig sigs|
nlPrintString( fp sig " ")
))))
=> t


Return to top
 ⠀
X