1GENLIB_OUTLINE.3(October 1, 1997) GENLIB_OUTLINE.3(October 1, 1997)
2
3
4
6 GENLIB_OUTLINE - build an outline from the current layout cell
7
9 #include <genlib.h>
10 void GENLIB_OUTLINE();
11
13 OUTLINE build a black box from a layout. After a call to OUTLINE, the
14 figure has only its abutment box, its connectors, references and feed
15 through.
16
18 #include <genlib.h>
19 main()
20 {
21 /∗ Create a figure to work on ∗/
22 GENLIB_DEF_PHFIG("cell");
23 /∗ Place an instance ∗/
24 GENLIB_PLACE("model","i1", NOSYM,0L,0L);
25 GENLIB_PLACE("model","i2", NOSYM,120L,40L);
26 GENLIB_DEF_PHINS("i1");
27 GENLIB_PLACE_TOP("model2", "i3", NOSYM);
28 /∗ define the new abutment box as the standard envelop ∗/
29 GENLIB_DEF_AB(0, 0, 0, 0);
30 GENLIB_OUTLINE();
31 /∗ Save all that on disk ∗/
32 GENLIB_SAVE_PHFIG();
33 }
34
36 genlib(1).
37
38
39
40
41
42
43PROCEDURAL GENERATION LANGUAGE ASIM/LIP6 GENLIB_OUTLINE.3(October 1, 1997)