cphSetCellVPLGenParams
cphSetCellVPLGenParams(
g_physConfigID
t_logLib
t_logCell
t_parameters
)
=> t / nil
Description
Sets the VPLGen parameters mapped to a specified logical cell in the physical configuration view associated with the given ID.
Arguments
|
g_physConfigID
|
ID of the physical configuration cellview.
|
|
t_logLib
|
Name of the library containing the logical cell.
|
|
t_logCell
|
Name of the logical cell.
|
|
t_parameters
|
List of parameter names (and default values for non-CDF parameters), each separated by a semicolon: For example, "pl 2u;pw 2u;nl 2u;nw 2u"
If the parameter in question is a CDF parameter (like pw or nw in the example below), you do not need to specify a default value; the default set in the schematic is used. For example, "pw;nw;a 1"
|
Value Returned
|
t
|
The VPLGen parameters were set on the specified cell.
|
|
nil
|
The VPLGen parameters were not set on the specified cell.
|
Example
cphSetCellVPLGenParams(physconfigID "cph" "nand2" "pl 2u;pw 2u;nl 2u;nw 2u")
Return to top