-- CreateCoreForSCLIB.mesa
-- Copyright Ó 1988 by Xerox Corporation. All rights reserved.
-- Bryan Preas May 4, 1988 3:33:03 pm PDT

DIRECTORY
CD, Core, CoreDirectory;
CreateCoreForSCLIB: CEDAR DEFINITIONS
 = BEGIN


CreateCoreForFEED: PROC [libDesign: CD.Design, coreLibrary: CoreDirectory.Library] RETURNS [Core.CellType];

CreateCoreForG11: PUBLIC PROC [libDesign: CD.Design, coreLibrary: CoreDirectory.Library] RETURNS [Core.CellType];

CreateCoreForG21: PUBLIC PROC [libDesign: CD.Design, coreLibrary: CoreDirectory.Library] RETURNS [Core.CellType];

CreateCoreForG31: PUBLIC PROC [libDesign: CD.Design, coreLibrary: CoreDirectory.Library] RETURNS [Core.CellType];

CreateCoreForG41: PUBLIC PROC [libDesign: CD.Design, coreLibrary: CoreDirectory.Library] RETURNS [Core.CellType];

CreateCoreForG61: PUBLIC PROC [libDesign: CD.Design, coreLibrary: CoreDirectory.Library] RETURNS [Core.CellType];

CreateCoreForG81: PUBLIC PROC [libDesign: CD.Design, coreLibrary: CoreDirectory.Library] RETURNS [Core.CellType];

CreateCoreForG12: PUBLIC PROC [libDesign: CD.Design, coreLibrary: CoreDirectory.Library] RETURNS [Core.CellType];

CreateCoreForF22: PROC [libDesign: CD.Design, coreLibrary: CoreDirectory.Library] RETURNS [Core.CellType];

CreateCoreForF32: PUBLIC PROC [libDesign: CD.Design, coreLibrary: CoreDirectory.Library] RETURNS [Core.CellType];

CreateCoreForF42: PROC [libDesign: CD.Design, coreLibrary: CoreDirectory.Library] RETURNS [Core.CellType];

CreateCoreForI1: PROC [libDesign: CD.Design, coreLibrary: CoreDirectory.Library] RETURNS [Core.CellType];

CreateCoreForI2: PROC [libDesign: CD.Design, coreLibrary: CoreDirectory.Library] RETURNS [Core.CellType];

CreateCoreForO1: PROC [libDesign: CD.Design, coreLibrary: CoreDirectory.Library] RETURNS [Core.CellType];

CreateCoreForO2: PROC [libDesign: CD.Design, coreLibrary: CoreDirectory.Library] RETURNS [Core.CellType];

CreateCoreForB21: PROC [libDesign: CD.Design, coreLibrary: CoreDirectory.Library] RETURNS [Core.CellType];


END.