Sorting Algorithms in 6502 Assembly
Check out the project files on GitHub!
This uses Minicube64 to run, so a lot of this is necessary for that architecture. If you want the meat and potatoes, check out the `ENUM`, the variable initialization, and the `...Sort` label to see how it all works.
- 20211109: Implement Bubble Sort
- 20211113: Optimized slightly by decrementing count every iteration of OuterLoop; Implement Selection Sort and Insertion Sort
- 20211114: Implement Quick Sort