clean: indent

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

View File

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