fix(strcmp): set rax and rbx to 0 before cmp
This commit is contained in:
parent
62e5d095b6
commit
83d43c88fc
|
@ -12,8 +12,9 @@ ft_strcmp:
|
|||
inc rdx
|
||||
jmp .loop
|
||||
.done:
|
||||
xor rax, rax
|
||||
xor rbx, rbx
|
||||
mov al, byte [rdi + rdx]
|
||||
mov bl, byte [rsi + rdx]
|
||||
sub rax, rbx
|
||||
ret
|
||||
|
||||
|
|
Loading…
Reference in New Issue