utoa: call clampu instead of clamp (since utoa=>unsigned to ascii)

This commit is contained in:
2025-07-20 23:48:07 +02:00
parent d595ba1903
commit e00895105c

View File

@@ -1,6 +1,7 @@
%include "src/constants.asm"
extern clamp
extern clampu
section .bss
cnvtBuff resb 67
@@ -368,7 +369,7 @@ utoa:
mov rdi, rdx
xor rsi, rsi
mov rdx, 64
call clamp
call clampu
mov r14, rax
; Store padding character
mov rdi, ' '