<> <> <> <> DIRECTORY BooleCore, CD, Core, EU2LeafUtils, PW, PWCore, Rope, Sisyph; EU2LeafUtilsImpl: CEDAR PROGRAM IMPORTS BooleCore, PW, PWCore, Sisyph EXPORTS EU2LeafUtils = BEGIN ROPE: TYPE = Rope.ROPE; eu2Design, alpsDesign: PUBLIC CD.Design; eu2Cx, alpsCx: Sisyph.Context; Extract: PUBLIC PROC [name: ROPE] RETURNS [cellType: Core.CellType] ~ { cellType _ Sisyph.ExtractSchematicByName[name: name, cx: eu2Cx]; }; AlpsExtract: PUBLIC PROC [name: ROPE] RETURNS [cellType: Core.CellType] ~ { cellType _ Sisyph.ExtractSchematicByName[name: name, cx: alpsCx]; PWCore.SetGet[cellType, alpsDesign]; }; Init: PROC ~ { defaultGlobalNames: LIST OF ROPE _ CONS["PadGnd", CONS["PadVdd", Sisyph.defaultGlobalNames]]; IF eu2Design=NIL THEN { -- not yet read eu2Design _ PW.OpenDesign["EU2"]; eu2Cx _ Sisyph.Create[design: eu2Design]; }; alpsDesign _ BooleCore.cellLibrary; alpsCx _ Sisyph.Create[alpsDesign]; }; Init[]; END.