Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
100 > 1100100
52 > 0110100
XOR from those two:
1100100
0110100
1010000 > 80
See here for the "bitwise XOR": https://en.wikipedia.org/wiki/Bitwise_operation#XOR
And here for binary representation you need to get those bits: https://en.wikipedia.org/wiki/Binary_number#Decimal
Windows calculator* also has a "programmer mode" (View > Programmer) where you can see the binary representations. It also has bitwise operations, including XOR.
---
*At least the Win7 one does. Don't know about the "new and improved" Win10 version.
By the way, all of the operations of the arithmic combinator starting from the << (left bit shift) work with the binary value of the signals.
I understood that for << and >> but i didn't know it worked like that for XOR.