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
beh_addbefig , beh_delbefig , beh_rmvbefig , beh_frebefig
struct befig *beh_addbefig (list, name)
struct befig *list;
char *name;
struct befig *beh_delbefig (list, pnt, mode)
struct befig *list;
struct befig *pnt;
char mode;
struct befig *beh_rmvbefig (list, name, mode)
struct befig *list;
char *name;
char mode;
void beh_frebefig (list)
struct befig *list;
A befig is a data structure representing a complete behavioural description of a circuit.
beh_addbefig() adds a befig structure at the top of a list of befig structures. The name registred in the befig structure is produced by namealloc(). The function returns the pointer of the new list. No checks are made by this function.
beh_delbefig() deletes a befig structure (pointed by pnt) from a list of befig structures. The function returns the pointer of the new list. No action is made if the structure pointed by pnt doesn't belong to the list. If mode is set to `Y' all objects (berin, bepor, bemsg, beout, bereg, bebus, bebux, beaux, binode, biabl, abl) pointed by the befig will also be deleted. If mode is set to `N' and there is any object pointed by the structure a warning message is printed on the standard error output.
beh_rmvbefig() deletes a befig structure (named name) from a list of befig structures. name is supposed to be produced by namealloc(). The function returns the pointer of the new list. No action is made if no structure named name has been found in the list. If mode is set to `Y' all objects (berin, bepor, bemsg, beout, bereg, bebus, bebux, beaux, binode, biabl, abl) pointed by the befig will also be deleted. If mode is set to `N' and there is any object pointed by the structure a warning message is printed on the standard error output.
beh_frebefig() deletes a list of befig structures (pointed by list) and all objects pointed by any of befig structures of the list. No action is made if list is an empty list (NULL pointer). No checks are made by this function.
#include <beh108.h>
struct befig *list;
char *name;
name = namealloc ("adder");
list = beh_addbefig (list,"amd2901");
list = beh_rmvbefig (list,name);
beh(3) , befig(3) , namealloc(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.
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.