aboutsummaryrefslogtreecommitdiff
path: root/src/run.sh
blob: 961defcd213194e169b4421e8d138a7ef1ff48ca (plain)
1
2
3
4
5
6
as test.s -o test.o -g
as sorter.s -o sorter.o -g
as insertion_sort.s -o insertion_sort.o -g
as utils.s -o utils.o -g
ld insertion_sort.o sorter.o utils.o test.o -o test -g
./test