spaces to tabs for asm files

This commit is contained in:
nub31
2025-02-02 22:43:40 +01:00
parent d318c99792
commit c0798eff3d
6 changed files with 178 additions and 173 deletions

View File

@@ -2,12 +2,12 @@ global str_len
section .text
str_len:
xor rax, rax
xor rax, rax
.loop:
cmp byte [rdi], 0
jz .done
inc rax
inc rdi
jmp .loop
cmp byte [rdi], 0
jz .done
inc rax
inc rdi
jmp .loop
.done:
ret
ret