FLATTEN_ALL_PHINS - flatten all instances in the current layout figure
#include <genlib.h>
void FLATTEN_ALL_PHINS(concat, catal)
char concat, catal;
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
FLATTEN_ALL_PHINS inserts the contents of all the instances of the current
figure in the current figure. All these instances are destroyed during
the process, and therefore cannot be refered to later in the layout
description.
The concat parameter may take two values:
In most case, the concat value must be YES, in order to warranty the unicity
of names in the figure. It may otherwise fail, because the function
would try to add in the current figure some object with an already existing
name.
The catal parameter may also take two values:
#include <genlib.h>
main()
{
/* Create a figure to work on */
DEF_PHFIG("mycell");
.
.
.
/* Place an instance */
PHINS("model","instance", sig1", sig2", EOL);
/* flatten all figure instance */
FLATTEN_ALL_PHINS(YES, YES);
/* Save all that on disk */
SAVE_PHFIG();
}
genlib(1) , PLACE(3) , PLACE_LEFT(3) , PLACE_RIGHT(3) , PLACE_TOP(3) , PLACE_BOTTOM(3) , PLACE_ON(3) , FLATTEN_PHFIG(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.