diff options
| -rw-r--r-- | src/insertionsort.s | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/insertionsort.s b/src/insertionsort.s index 790f620..9fd158e 100644 --- a/src/insertionsort.s +++ b/src/insertionsort.s @@ -7,7 +7,8 @@ # rdx = index of key to sort by # OUTPUTS : rax = address for sorted A # CLOBBERS: none -# NOTES : Preserves all registers +# NOTES : Preserves all registers. Recursive psudocode taken from +# https://en.wikipedia.org/wiki/Insertion_sort # -------------------------------------------- .section .text .globl insertion_sort |