DEVDUPABLXOREXPR(3) | ABL FUNCTIONS | DEVDUPABLXOREXPR(3) |
devdupablxorexpr - duplicates and develops 'xor', 'nxor'.
See the file buster/alliance/alc_origin.1.en.gz.
#include "abl101.h" chain_list ∗devdupablxorexpr( Expr )
chain_list ∗Expr;
devdupablxorexpr develops 'xor' or 'xnor' in Expr.
devdupablxorexpr returns a pointer to the modified expression.
#include "abl101.h"
chain_list ∗Expr1;
chain_list ∗Expr2;
Expr1 = createablbinexpr( ABL_XOR,
createablatom( "a" ),
createablatom( "b" ) );
Expr2 = devdupablxorexpr( Expr1 );
/* displays (a and (not b)) or ((not a) and b) */
viewablexpr( Expr2, ABL_VIEW_VHDL );
See the file buster/alliance/alc_bug_report.1.en.gz.
October 1, 1997 | ASIM/LIP6 |