diff options
| author | Andreas Kapp Lindquist <alind24@student.sdu.dk> | 2025-09-29 22:11:29 +0200 |
|---|---|---|
| committer | mithe24 <mithe24@student.sdu.dk> | 2025-10-29 13:49:57 +0100 |
| commit | e068a165e039742c1718ccf70020382896d2bf15 (patch) | |
| tree | ffcddf08c368a39bed92ac6d72366a9181919752 /src | |
| parent | 8b3beceff2fea52488e675a04f12649ca248b78a (diff) | |
| download | sorter-e068a165e039742c1718ccf70020382896d2bf15.tar.gz sorter-e068a165e039742c1718ccf70020382896d2bf15.zip | |
refactor(sorting.s): Renamed to sorter.s
Diffstat (limited to '')
| -rw-r--r-- | src/sorter.s (renamed from src/sorting.s) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sorting.s b/src/sorter.s index 771b4c8..ba232fe 100644 --- a/src/sorting.s +++ b/src/sorter.s @@ -4,7 +4,7 @@ # key in A_i, address and size of A, and an address of a sorting algorithm to be # used # INPUTS : rdi = address for A -# rsi = length of A in bytes +# rsi = length of A in 64 bit chunks # rdx = index of key to sort by # rcx = address of sorting algorithm # OUTPUTS : rax = address for sorted A @@ -26,7 +26,7 @@ sorter: # rdi is the addres of a # rsi is the length of a # rdx is the index of the key - call rcx # Sort the array + call *%rcx # Sort the array (* is indirect call) # Restore registers pop %r15 |