https://github.com/mnito/hamming-asm
Hamming distance routines in x86-64 assembly
https://github.com/mnito/hamming-asm
assembly c hamming-distance macos nasm x86-64
Last synced: 3 months ago
JSON representation
Hamming distance routines in x86-64 assembly
- Host: GitHub
- URL: https://github.com/mnito/hamming-asm
- Owner: mnito
- License: mit
- Created: 2018-06-05T04:08:44.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-09-14T01:15:56.000Z (almost 7 years ago)
- Last Synced: 2025-01-30T06:09:37.378Z (5 months ago)
- Topics: assembly, c, hamming-distance, macos, nasm, x86-64
- Language: Assembly
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Hamming Distance Routines in x86-64 Assembly
To assemble (macOS):
```sh
nasm -f macho64 hamming.asm -o hamming.o
```To compile with example/benchmark:
```sh
clang -Wall -pedantic -O3 hamming.o example.c -o hamming
```