1 /* -----------------------------------------------------------------
2 FILE:	    initialize.h
3 DESCRIPTION:Header file for initialize.c
4 CONTENTS:
5 DATE:	    March 15, 1990
6 REVISIONS:  Wed Dec 19 19:38:46 EST 1990 - added analog pin type.
7 ----------------------------------------------------------------- */
8 #ifndef INITIALIZE_H
9 #define INITIALIZE_H
10 
11 #define PINGROUPTYPE     1
12 #define HARDPINTYPE      2
13 #define SOFTPINTYPE      3
14 #define SOFTEQUIVTYPE    4
15 #define HARDEQUIVTYPE    5
16 #define ADDEQUIVTYPE     6
17 #define ANALOGPINTYPE    7
18 
19 void fixCell( INT fixedType, INT xloc, char *lorR, INT yloc, char *borT, INT xloc2, char *lorR2, INT yloc2, char *borT2 );
20 
21 void addClass( INT class );
22 
23 void addCell( char * cellName, CELLTYPE cellType );
24 
25 void endCell();
26 
27 void addOrient( INT orient );
28 
29 #endif /* INITIALIZE_H */
30