schGetSplitInstTerms
schGetSplitInstTerms(d_instTermId) =>l_splitInstTermIds/ nil
Description
Returns a list of split instance terminals that have the same name as that of the given split-primary instance.
Arguments
Value Returned
Examples
Returns a list of split instance terminals with the same name as the primary instance term name.
s1 = dbOpenCellViewByType("lib" "bga" "s1" "schematicSymbol" "r")
i0_s1 = schCreateInst(cvId s1 "I0" 0:1 "R0")
i0 = schGetSplitPrimaryInst(i0_s1)
primTerm = car(i0->instTerms)
schGetSplitInstTerms(primTerm)
Return to top