genlib_unflatten_lofig(3) - Linux man page
Name
UNFLATTEN_LOFIG - creates a hierarchy level from instances in the current logical figure
Synopsys
#include <genlib.h> void GENLIB_UNFLATTEN_LOFIG(figurename, instancename, list_of_instances, 0) char ∗figurename; char ∗instancename; char ∗list_of_instances;
Parameters
- figurename
Name of the figure of the new hierarchy to be created
instancename
Name to be given at the instanciation of figurename into the current structual figure
list_of_instances
List of strings representing the instances to be inserted into the new figure
Description
UNFLATTEN_LOFIG creates a new level of hierarchy, whose model name will be figurename, and instanciate it under the name instancename in the current figure. The instances whose name belong to the list_of_instances parameters are added in the new figure, and destroyed from the current figure.
Example
#include <genlib.h>
main()
{
/∗ Create a figure to work on ∗/
GENLIB_DEF_LOFIG("mycell");
.
.
.
/∗ Place an instance ∗/
GENLIB_LOINS("model","instance", "sig1", "sig2", EOL);
/∗ flatten an instance ∗/
GENLIB_UNFLATTEN_LOFIG("newfig", "newins", "instance", ..., 0);
/∗ Save all that on disk ∗/
GENLIB_SAVE_LOFIG();
- }
See Also
genlib(1), genlib_flatten_lofig(3).