cdsSetNetlistMode
cdsSetNetlistMode( ) => t / nil
Description
Sets netlisting mode, which is based on the current value of the SHELL environment variable CDS_Netlisting_Mode. The valid values for this shell environment variable are Digital, Analog, or Compatibility. The function cdsSetNetlistMode is used in the Virtuoso SKILL environment to update the settings without restarting Virtuoso.
Arguments
Value Returned
Examples
The following example sets netlisting mode.
$ virtuoso -nograph
> setShellEnvVar("CDS_Netlisting_Mode=Analog")
=> t
> cdsSetNetlistMode()
=> t
> cdsGetNetlistMode()
=> "Analog"
> setShellEnvVar("CDS_Netlisting_Mode=Digital")
=> t
> cdsSetNetlistMode()
=> t
> cdsGetNetlistMode()
=> "Digital"
Related Topics
Return to top