Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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
```