Skip to content

Commit

Permalink
Update 2.5 BitwiseOperations.md (0xZ0F#21)
Browse files Browse the repository at this point in the history
Fix XOR section to reflect XOR in all the operations
  • Loading branch information
Gh0stByte authored Mar 25, 2020
1 parent a68b75e commit a1f907e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Chapter 2 - BinaryBasics/2.5 BitwiseOperations.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ These operations include **NOT**, **AND**, **OR**, and **XOR**.
### XOR
**XOR** checks if either of the bits is one, **but not both**, if so then the result is one.
* 1 XOR 1 = 0
* 1 OR 0 = 1
* 0 OR 0 = 0
* 1 XOR 0 = 1
* 0 XOR 0 = 0
<p align="center">
<img src="[ignore]/BOXor.png">
</p>
Expand Down

0 comments on commit a1f907e

Please sign in to comment.