BASIC Stamp Architecture – ^/
Page 76 • BASIC Stamp Programming Manual 2.0b • www.parallaxinc.com
0 XOR NOT 0 = 1
0 XOR NOT 1 = 0
1 XOR NOT 0 = 0
1 XOR NOT 1 = 1
The result returned by ^/ will contain 1s in any bit positions in which the
first value and second values are equal. Example:
SYMBOL Value1 = B0
SYMBOL Value2 = B1
SYMBOL Result = B2
Value1 = %00001111
Value2 = %10101001
Result = Value1 ^/ Value2
DEBUG %Result ' Show OR NOT result (%01011001)