https://github.com/holmanb/bool
https://github.com/holmanb/bool
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/holmanb/bool
- Owner: holmanb
- Created: 2021-05-22T22:33:29.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-05-22T22:33:45.000Z (about 5 years ago)
- Last Synced: 2025-01-20T06:19:02.579Z (over 1 year ago)
- Language: Assembly
- Size: 0 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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?