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

https://github.com/holmanb/bool


https://github.com/holmanb/bool

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

          

Bool
====

x86 implementation of `true` and `false` in AT&T syntax assembly.

```
gcc x86_false.s -o false
gcc x86_true.s -o true
./true && echo $?
0
./false || echo $?
1
```

Why? Why not?