This repository has been archived on 2025-10-24. You can view files and clone it, but cannot push or open issues or pull requests.
Files
nub-lang-archive-2/input/core/itoa.asm
2025-01-30 18:09:12 +01:00

30 lines
388 B
NASM

section .bss
buffer resb 20
section .text
global itoa
itoa:
push rbx
push rsi
push rdx
mov rax, rdi
mov rsi, buffer + 19
mov byte [rsi], 0
dec rsi
.loop:
xor rdx, rdx
mov rbx, 10
div rbx
add dl, '0'
mov [rsi], dl
dec rsi
test rax, rax
jnz .loop
inc rsi
mov rax, rsi
pop rdx
pop rsi
pop rbx
ret