TransCount.mesa
Copyright Ó 1987 by Xerox Corporation. All rights reserved.
Bruce Wagar, August 18, 1987 11:16:21 pm PDT
Interface for the transistor count program.
DIRECTORY
Core;
TransCount: CEDAR DEFINITIONS
= BEGIN
CellType: TYPE = Core.CellType;
TransistorCount: PROC [cell: CellType] RETURNS [INT];
Counts the number of transistors in cell.
END.