An open API service indexing awesome lists of open source software.

https://github.com/x0reaxeax/x0rcmp

Implementing conditions purely with XOR instruction
https://github.com/x0reaxeax/x0rcmp

amd64 esoteric impractical obfuscation x86 x86-64 xor xor-operation

Last synced: 6 months ago
JSON representation

Implementing conditions purely with XOR instruction

Awesome Lists containing this project

README

        

# x0rcmp

Implementation of conditions using only the `xor` instruction on x86-64.
Demonstrates the following equality check and conditional variable value assignment:
```c
if (var1 == 39) {
var2 = 42;
}
```

Read more at http://x0reaxe.ax/x0rcmp.html