techGetViaStackLimits
techGetViaStackLimits(d_techID) =>l_viaStackLimits/ nil
Description
Returns a list of the stacked via limit data defined in the technology database. ASCII technology file location: foundry constraint group.
Arguments
Value Returned
|
A list of the via stack limits defined in the specified technology database. The list has the following syntax: |
|
|
The technology database does not exist or no via stack limits are defined. |
Example
tfID = techGetTechFile(ddGetObj("newlib"))
db:0x0180200d
Returns the database identifier for the current technology database and assigns it to the variable tfID.
techGetViaStackLimits(tfID)
=> (( 2 "Metal1" "Metal4" )
( 3 "Metal6" "Metal8" )
( 2 "Metal5" "Metal7" )
)
Returns the via stack limits defined in the foundry constraint group of the technology database identified by tfID.
Return to top