Magenta
What Xor does
Wed Nov 11 15:21:26 1998


Xor is logic operation such as and or etc. It works how explainded here:

1 1 1 1 0 0 0 =>120 decimal or 78 hex lets xor it with 110

1 1 0 1 1 1 0 =>110 decimal or 6e hex
-------------
0 0 1 0 1 1 0 =>22 decimal or 16 hex

0 xor 0 =>0
1 xor 1 =>0
1 xor 0 =>1
o xor 1 =>1

You have to watch at the binary value of a Number etc.
Xor uses the binary values, and does what is explained in the little sheme.

Hope this could help ya.

If you have still question ask again

Cya Magenta