In ASM and some programming languages, you can do "xor", "or", or "and" on registers/variables.
Well, with some other things you can't and I really don't want to take the time to make this convert everything to binary and go digit-by-digit and do it on them, then convert it back.
I was wondering if anyone knew a formula or something to just take the decimal values and do something to them to get it.
"Not" was easy because I just did the max (FFFFFF) minus the value. Is it the only one that can be done like that?
I tried google, but it just gave me all the "0 xor 0 = 0", "1 xor 0 = 1", "0 xor 1 = 1", "1 xor 1 = 0" stuff, then highly overcomplicated it.