COPY_UP_ALL_CON - copy all physical connectors of an instance face in the current figure
#include <genlib.h>
void COPY_UP_ALL_CON(face, insname, concatenate)
char face, concatenate;
char *insname;
This software belongs to the ALLIANCE CAD system from the CAO-VLSI team at
ASIM/LIP6/UPMC laboratory.
LIP6/ASIM
University P. et M. Curie
4, place Jussieu
75252 PARIS Cedex 05
FRANCE
Fax : {33/0} 1.44.27.62.86
E-mail support : alliance-support@asim.lip6.fr
COPY_UP_ALL_CON copies all instance connectors of the face face of the placed instance called insname into the current layout. The concatenate argument may take two values:
Connector on the abutment box
The figure connector is place right over the instance
connector. The single connector is duplicated.
Connector inside the abutment box
The instance connector face is computed in the figure,
and then, the connector is duplicated on the given
face, at the right coordinates for this face. Then a
wire is drawn between the instance connector and the
figure connector in the connector layer.
COPY_UP_ALL_CON impossible : missing DEF_PHFIG" No figure has been yet specified by a call to DEF_PHFIG. So it isn't possible to place a connector inside it. you must call DEF_PHFIG before any other layout action. *** genlib error *** COPY_UP_ALL_CON impossible : connector conname face face of instance insname, current figure doesn't exist" No connector matches both the conname and the face arguments.
#include <genlib.h>
main()
{
/* Create a figure to work on */
DEF_PHFIG("cell");
.
.
PLACE_LEFT("gaer0_f", insN", SYMXY);
.
.
DEF_AB(0L, 0L, 0L, 0L);
/* Copy all connectors */
COPY_UP_ALL_CON(NORTH, insN", YES);
/* Save that on disk */
SAVE_PHFIG();
}
genlib(1) , DEF_PHFIG(3) , SAVE_PHFIG(3) , COPY_UP_CON(3) , COPY_UP_CON_FACE(3) , PHCON(3) , THRU_CON_H(3) , THRU_CON_V(3) .
This tool is under development at the ASIM/LIP6/UPMC laboratory, cao-vlsi
research team.
We need your feedbak to improve documentation and tools.
If you find bugs, please fill-in the form at
http://asim.lip6.fr/alliance/support/bug-report/
Thanks for doing this.