DEVABLXOREXPR(3) | ABL FUNCTIONS | DEVABLXOREXPR(3) |
devablxorexpr - develops 'xor', 'nxor' in an expression.
See the file buster/alliance/alc_origin.1.en.gz.
#include "abl101.h" chain_list ∗devablxorexpr( Expr )
chain_list ∗Expr;
devablxorexpr develops 'xor' or 'xnor' in Expr. The expression pointer Expr MUSTN'T be used after the call to this function.
devablxorexpr returns a pointer to the modified expression.
#include "abl101.h"
chain_list ∗Expr;
Expr = createablbinexpr( ABL_XOR,
createablatom( "a" ),
createablatom( "b" ) );
Expr = devablxorexpr( Expr );
/* displays (a and (not b)) or ((not a) and b) */
viewablexpr( Expr, ABL_VIEW_VHDL );
See the file buster/alliance/alc_bug_report.1.en.gz.
October 1, 1997 | ASIM/LIP6 |