1
0
mirror of https://gitlab.os-k.eu/os-k-team/kvisc.git synced 2023-08-25 14:05:46 +02:00
kvisc/ka/str/strcmp.k

53 lines
899 B
Plaintext
Raw Normal View History

2019-05-31 21:25:56 +02:00
; The OS/K Team licenses this file to you under the MIT license.
; See the LICENSE file in the project root for more information.
;
; int strcmp(const char *str1, const char *str2)
;
; Returns:
; 0 if the contents of both strings are equal
; 1 if the first character that does not match has a greater value in str1 than in str2
; -1 if the first character that does not match has a lower value in str1 than in str2
;
strcmp:
cmp b[ax0], b[ax1]
2019-06-06 22:07:34 +02:00
jmp.nz .1
2019-05-31 21:25:56 +02:00
test b[ax0], b[ax0]
2019-06-06 22:07:34 +02:00
jmp.z .1
2019-05-31 21:25:56 +02:00
inc ax0
inc ax1
jmp strcmp
.1:
mov rax, b[ax0]
sub rax, b[ax1]
sgn rax, rax
ret
;
; int strncmp(const char *str1, const char *str2, int maxn)
;
strncmp:
mov rcx, ax2
2019-06-12 15:30:35 +02:00
.0:
2019-05-31 21:25:56 +02:00
cmp b[ax0], b[ax1]
2019-06-06 22:07:34 +02:00
jmp.nz .1
2019-05-31 21:25:56 +02:00
test b[ax0], b[ax0]
2019-06-06 22:07:34 +02:00
jmp.z .1
2019-05-31 21:25:56 +02:00
inc ax0
inc ax1
2019-06-12 15:30:35 +02:00
loop .0
2019-05-31 21:25:56 +02:00
.1:
mov rax, b[ax0]
sub rax, b[ax1]
sgn rax, rax
ret