aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: 555eb689cee9863157241832ae7721df746839ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Sorting in x86_64 assembly
Created by
Andreas K. L.
Navid S.
Mikkel T.

# Usage
To create the executable run `make` in `src/`.
The program takes a `tsv` file with positive integer coordinates as input.
It returns all the coordinates sorted by the second coordinate to `stdout`.
To change the sorting algorithm use:
`sorter -a isort file.tsv`
The available sorting algorithms are Insertionsort and Quicksort.