THRU_CON_V - draw a vertical wire with connectors from side to side of the abutment box of the current figure
#include <genlib.h>
void THRU_CON_V(layer, width, name, x)
char layer;
long width;
char *name;
long x;
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
THRU_CON_V adds a vertical segment and two connectors in the current layout cell. The x coordinates gives the wire and connectors horizontal position, vertical ones beeing extracted from the figure abutment box. Two connectors are created on the NORTH and SOUTH sides of the abutment box, at the x coordinates, and given the name name. The segment is drawn thru the figure, from the NORTH connector to the SOUTH one. This function is mostly used to put through routes on a figure, and therefore, the T prefixed layer names are the most likely to be used here. The layer argument can take the following legal values:
THRU_CON_V 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. THRU_CON_V impossible : no or illegal abutment box" The current figure has either no abutment box defined yet, or has an heigth of zero. DEF_AB is to be called.
#include <genlib.h>
main()
{
/* Create a figure to work on */
DEF_PHFIG("cell");
.
.
.
DEF_AB(0L, 0L, 0L, 0L);
/* Put a wire through the figure */
THRU_CON_V(TALU2, 1, grumf", 12L);
/* Save that on disk */
SAVE_PHFIG();
}
genlib(1) , DEF_PHFIG(3) , SAVE_PHFIG(3) , THRU_H(3) , THRU_V(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.