Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- 0 & 0 = 0
- 1 & 0 = 0
- 0 & 1 = 0
- 1 & 1 = 1
- 0 ^ 0 = 0
- 1 ^ 0 = 1
- 0 ^ 1 = 1
- 1 ^ 1 = 0
- A & B = !(!A | !B)
- A ^ B = (A | B) & !(A & B)
- 0 + 0 = 0 0
- 1 + 0 = 1 0
- 0 + 1 = 1 0
- 1 + 1 = 0 1
- | \
- | -> AND
- -> XOR
- 0 - 0 = 0 0
- 1 - 0 = 1 0
- 0 - 1 = 1 1
- 1 - 1 = 0 0
- | \
- | -> (!A & B)
- -> XOR
Advertisement
Add Comment
Please, Sign In to add comment