Specifications

BASIC Stamp II
Page 246 • BASIC Stamp Programming Manual 1.8 • Parallax, Inc.
^
Returns the bitwise XOR of two values. Each bit of the values is subject
to the following logic:
0 XOR 0 = 0
0 XOR 1 = 1
1 XOR 0 = 1
1 XOR 1 = 0
The result returned by ^ will contain 1s in any bit positions in which
one or the other (but not both) input values contain 1s. Example:
debug bin ? %00001111 ^ %10101001 ' Show XOR result (%10100110)