nlPrintInstSignals
nlPrintInstSignals(o_formattero_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
Value Returned
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