diff options
| author | Andreas Kapp Lindquist <andkaplin05@gmail.com> | 2025-10-28 15:09:05 +0100 |
|---|---|---|
| committer | mithe24 <mithe24@student.sdu.dk> | 2025-10-29 13:49:57 +0100 |
| commit | 541874c7d91013cda51edf12334890305b3988d5 (patch) | |
| tree | a88ac545bd9986ba4380bf561156daee3eba31b2 /src/lib/strcmp.s | |
| parent | 6746b29daa5b26b53d0c3fa3da26a6d54dcc5a73 (diff) | |
| download | sorter-541874c7d91013cda51edf12334890305b3988d5.tar.gz sorter-541874c7d91013cda51edf12334890305b3988d5.zip | |
refactor(src): made sure all function follow calling conventions
Diffstat (limited to 'src/lib/strcmp.s')
| -rw-r--r-- | src/lib/strcmp.s | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/strcmp.s b/src/lib/strcmp.s index c24b5b5..d495a91 100644 --- a/src/lib/strcmp.s +++ b/src/lib/strcmp.s @@ -5,7 +5,7 @@ # INPUTS : rdi = address of first string # rsi = address of second string # OUTPUTS : rax = 1 if equals else 0 -# CLOBBERS: +# CLOBBERS: rax, rdi, rsi, r8, r9 # -------------------------------------------- .section .text .globl strcmp |