mirror of
https://gitlab.os-k.eu/os-k-team/kvisc.git
synced 2023-08-25 14:05:46 +02:00
95 lines
1.3 KiB
Plaintext
95 lines
1.3 KiB
Plaintext
; The OS/K Team licenses this file to you under the MIT license.
|
|
; See the LICENSE file in the project root for more information.
|
|
|
|
;
|
|
; void itoa(char *buf, int num, int base)
|
|
;
|
|
itoa:
|
|
mov ax3, 1
|
|
jmp ltostr
|
|
|
|
;
|
|
; void utoa(char *buf, int num, int base)
|
|
;
|
|
sub ax3, ax3
|
|
jmp ltostr
|
|
|
|
;
|
|
; void ltostr(char *buf, int num, int base, bool signed)
|
|
;
|
|
ltostr:
|
|
mov rax, ax0
|
|
xor lx0, lx0
|
|
|
|
; make sure base is in [2, 32]
|
|
cmp ax2, 2
|
|
j.b .bad
|
|
cmp ax2, 36
|
|
j.a .bad
|
|
|
|
; deal with zero
|
|
test ax1, ax1
|
|
j.z .zero
|
|
|
|
; deal with base 10 signedness
|
|
|
|
test ax3, ax3
|
|
cmp.nz ax2, 10 ; base 10
|
|
j.nz .conv
|
|
|
|
sgn lx0, ax1 ; extract ax1 sign
|
|
|
|
cmp lx0, -1 ; negative?
|
|
neg.z ax1
|
|
|
|
; main loop
|
|
.conv:
|
|
test ax1, ax1
|
|
j.z .fini
|
|
|
|
mov lx1, ax1
|
|
rem lx1, ax2 ; ax1 % base
|
|
|
|
cmp lx1, 9 ; lx1 > 9 ?
|
|
j.a .nondec
|
|
|
|
add lx1, '0'
|
|
jmp .next
|
|
|
|
.nondec:
|
|
add lx1, 55 ; 'A' - 10
|
|
|
|
.next:
|
|
mov b[ax0], lx1
|
|
inc ax0
|
|
|
|
div ax1, ax2
|
|
jmp .conv
|
|
|
|
; add minus flag, null-terminate and reverse
|
|
.fini:
|
|
cmp lx0, -1
|
|
mov.z b[ax0], '-'
|
|
inc.z ax0
|
|
|
|
mov b[ax0], 0
|
|
|
|
mov ax0, rax
|
|
call strrev2
|
|
|
|
ret
|
|
|
|
;
|
|
; exceptional cases
|
|
;
|
|
.bad:
|
|
mov q[errno], EINVAL
|
|
mov b[ax0], 0
|
|
ret
|
|
|
|
.zero:
|
|
mov b[ax0], 48 ; '0'
|
|
mov b[ax0+1], 0
|
|
ret
|
|
|