clean: indent

This commit is contained in:
starnakin 2024-09-03 10:43:41 +02:00
parent b3a4690a85
commit 50d50092bf

View File

@ -3,7 +3,8 @@ section .text
ft_strcmp:
mov rcx, 0
loop:
loop:
mov dl, [rsi + rcx]
mov bl, [rdi + rcx]
@ -15,7 +16,8 @@ section .text
inc rcx
jmp loop
out:
out:
sub bl, dl
movsx rax, bl
ret