aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md14
1 files changed, 14 insertions, 0 deletions
diff --git a/README.md b/README.md
index e69de29..b9b6249 100644
--- a/README.md
+++ b/README.md
@@ -0,0 +1,14 @@
+# Sorting in x86_64 assembly
+Created by
+Andreas K. L.
+Navid S.
+Mikkel T.
+
+# Usage
+To create the executeable run "make" in "src/".
+The program takes a tsv file with positive integer coordinates as input.
+It returns all of 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 isort (Insertionsort) and qsort
+(Quicksort).