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_addbebus , beh_delbebus , beh_rmvbebus , beh_frebebus
struct bebus *beh_addbebus (list, name, biabl, bibdd, type)
struct bebus *list;
char *name;
struct biabl *biabl;
struct binode *bibdd;
char type;
struct bebus *beh_delbebus (list, pnt, mode)
struct bebus *list;
struct bebus *pnt;
char mode;
struct bebus *beh_rmvbebus (list, name, mode)
struct bebus *list;
char *name;
char mode;
void beh_frebebus (list)
struct bebus *list;
A bebus is a data structure representing a one-bit bused output port.
beh_addbebus() adds a bebus structure at the top of a list of bebus structures. The name registred in the bebus structure is produced by namealloc(). The function returns the pointer of the new list. No checks are made by this function.
beh_delbebus() deletes a bebus structure (pointed by pnt) from a list of bebus 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 (biabl, binode) pointed by the bebus will also be deleted. If mode is set to `N' and there is any object (biabl, binode) pointed by the bebus, a warning message is printed on the standard error output.
beh_rmvbebus() deletes a bebus structure (named name) from a list of bebus 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 (biabl, binode) pointed by the bebus will also be deleted. If mode is set to `N' and there is any object (biabl, binode) pointed by the bebus, a warning message is printed on the standard error output.
beh_frebebus() deletes a list of bebus structures (pointed by list) and all objects (biabl, binode) pointed by any bebus structure 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 bebus *list;
char *name;
name = namealloc ("data_bus_0");
list = beh_addbebus (list,"result_bus_0", NULL, NULL, `M');
list = beh_rmvbebus (list,name);
beh(3) , log(1) , biabl(3) , binode(3) , bebus(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.