BINEQVPerforms a bit by bit equivalence operation.
Description:
The result of BINEQV(A,B) is calculated by converting A and B to integer values. Then each bit of the result is set to 1 if the corresponding bits in A and B are equal. This table illustrates this relationship.
The following example performs a bit by bit equivalence of 12 and 6:
BINEQV(12,6)
12 = 0000000000001100
6 = 0000000000000110
BINEQV(12,6) = 1111111111110101
The resulting binary number represents -11.
See Also:
|