This repository has been archived on 2025-10-23. You can view files and clone it, but cannot push or open issues or pull requests.
Files
nub-lang-archive/input/core/str_len.asm
nub31 b6c80af6c4 ...
2025-01-30 18:05:59 +01:00

13 lines
150 B
NASM

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