apPDKSetupGetModgenDummyParams
apPDKSetupGetModgenDummyParams(t_pdkName) =>l_paramList/ nil
Description
(Virtuoso Layout Suite EXL and above) Retrieves a list of Modgen dummy instance parameters that are registered to the specified PDK for the automated placement and routing flow.
Arguments
|
Name of the PDK for which Modgen dummy instance parameters must be retrieved. |
|
Value Returned
|
A list of Modgen dummy instance parameters registered for the specified PDK. |
|
|
There are no registered Modgen dummy instance parameters for the specified PDK. |
Examples
Applies custom PDK settings and retrieves a list of Modgen dummy instance parameters for the specified PDK.
apCustomPDKSettings("CustomPDK" ?modgenDummyParams list(list("cell_name1") list(list("ModgenDummy1" "OFF")))))
=> t
apPDKSetupGetModgenDummyParams("CustomPDK")
=> (("cell_name1"
(("ModgenDummy1") ("OFF"))
)
)
Return to top