GENLIB_PHSEG.3(October 1, 1997) | GENLIB_PHSEG.3(October 1, 1997) |
GENLIB_PHSEG - place a physical segment in the current figure at absolute coordinates
#include <genlib.h> void GENLIB_PHSEG(layer, width, name, x1, y1, x2, y2) char layer; long width; char ∗name; long x1, y1, x2, y2;
See the file buster/alliance/alc_origin.1.en.gz.
PHSEG adds a segment in the current layout cell, at the specified coordinates, with the given attributs. The layer argument can take the following legal values :
The name argument needs not to be specified, since one usually doesn't need to give a segment a name. To do so, just type "" as name.
"GENLIB_PHSEG impossible : missing GENLIB_DEF_PHFIG"
#include <genlib.h> main() { /∗ Create a figure to work on ∗/ GENLIB_DEF_PHFIG("cell"); /∗ Put a segment ∗/ GENLIB_PHSEG(ALU1, 1, "", 0L, 0L, 12L, 0L); /∗ Save that on disk ∗/ GENLIB_SAVE_PHFIG(); }
genlib(1), GENLIB_DEF_PHFIG(3), GENLIB_SAVE_PHFIG(3), GENLIB_COPY_UP_SEG(3), GENLIB_THRU_H(3), GENLIB_THRU_CON_H(3), GENLIB_THRU_V(3), GENLIB_THRU_CON_V(3), GENLIB_WIRE1(3), GENLIB_WIRE2(3), GENLIB_WIRE3(3).
See the file buster/alliance/alc_bug_report.1.en.gz.
ASIM/LIP6 | PROCEDURAL GENERATION LANGUAGE |