aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xsrc/run.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/run.sh b/src/run.sh
new file mode 100755
index 0000000..8cf836f
--- /dev/null
+++ b/src/run.sh
@@ -0,0 +1,5 @@
+as test.s -o test.o -g
+as sorter.s -o sorter.o -g
+as insertionsort.s -o insertionsort.o -g
+ld insertionsort.o sorter.o test.o -o test -g
+./test