This project is a x86 implementation of the Quicksort.
nasm -f elf32 quickSort.asm -o quickSort.ogcc -m32 -fno-pic quickSort.o -o quickSort./quickSort -98 55 66 -24 74 65 0 99./auto_test.shgdb quickSortThe code is based on a question on stackoverflow, asked by pushebp and answered by davmac. Woolo implements the additional functions and comments, which includes:
- Accepting numbers as arguments from command line.
- Being able to sort negative numbers as well.
- Printing out the original input and sorted output
- More comments for explaination.