clean: fix indentation
This commit is contained in:
parent
a5ccf7df95
commit
3632b34e40
@ -1,22 +1,21 @@
|
|||||||
section .note.GNU-stack noalloc noexec nowrite progbits
|
section .text
|
||||||
section .text
|
global ft_strcmp
|
||||||
global ft_strcmp
|
|
||||||
|
|
||||||
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]
|
||||||
|
|
||||||
cmp bl, 0
|
cmp bl, 0
|
||||||
je out
|
je out
|
||||||
|
|
||||||
cmp bl, dl
|
cmp bl, dl
|
||||||
jne out
|
jne out
|
||||||
|
|
||||||
inc rcx
|
inc rcx
|
||||||
jmp loop
|
jmp loop
|
||||||
out:
|
out:
|
||||||
sub bl, dl
|
sub bl, dl
|
||||||
movsx rax, bl
|
movsx rax, bl
|
||||||
ret
|
ret
|
@ -1,19 +1,19 @@
|
|||||||
section .text
|
section .text
|
||||||
global ft_strcpy
|
global ft_strcpy
|
||||||
|
|
||||||
ft_strcpy:
|
ft_strcpy:
|
||||||
mov rcx, 0
|
mov rcx, 0
|
||||||
loop:
|
loop:
|
||||||
mov al, [rsi + rcx]
|
mov al, [rsi + rcx]
|
||||||
|
|
||||||
mov [rdi + rcx], al
|
mov [rdi + rcx], al
|
||||||
|
|
||||||
cmp al, 0
|
cmp al, 0
|
||||||
je out
|
je out
|
||||||
|
|
||||||
inc rcx
|
inc rcx
|
||||||
|
|
||||||
jmp loop
|
jmp loop
|
||||||
out:
|
out:
|
||||||
mov rax, rdi
|
mov rax, rdi
|
||||||
ret
|
ret
|
@ -1,13 +1,13 @@
|
|||||||
section .text
|
section .text
|
||||||
global ft_strlen
|
global ft_strlen
|
||||||
|
|
||||||
ft_strlen:
|
ft_strlen:
|
||||||
mov rcx, 0
|
mov rcx, 0
|
||||||
loop:
|
loop:
|
||||||
cmp BYTE [rdi + rcx], 0
|
cmp BYTE [rdi + rcx], 0
|
||||||
je out
|
je out
|
||||||
inc rcx
|
inc rcx
|
||||||
jmp loop
|
jmp loop
|
||||||
out:
|
out:
|
||||||
mov rax, rcx
|
mov rax, rcx
|
||||||
ret
|
ret
|
@ -1,7 +1,6 @@
|
|||||||
section .text
|
section .text
|
||||||
global ft_write
|
global ft_write
|
||||||
|
ft_write:
|
||||||
ft_write:
|
mov rax, 1
|
||||||
mov rax, 1
|
syscall
|
||||||
syscall
|
ret
|
||||||
ret
|
|
Loading…
Reference in New Issue
Block a user