Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 15 days 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 (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-09-14T01:15:56.000Z (over 6 years ago)
- Last Synced: 2024-12-02T21:23:48.909Z (2 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
```