2000-05-28 13:40:48 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 11.06.1998
|
|
|
|
;
|
|
|
|
; char* ltoa (long value, char* s, int radix);
|
|
|
|
; char* ultoa (unsigned long value, char* s, int radix);
|
|
|
|
;
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
.export _ltoa, _ultoa
|
2018-05-22 13:59:05 +00:00
|
|
|
.import popax, popptr1, negeax
|
2013-05-09 11:56:54 +00:00
|
|
|
.import __hextab, __longminstr
|
|
|
|
.importzp sreg, ptr1, ptr2, ptr3, tmp1
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2018-05-22 13:59:05 +00:00
|
|
|
.macpack cpu
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
.code
|
|
|
|
|
|
|
|
;
|
|
|
|
; Common subroutine to pop the parameters and put them into core
|
|
|
|
;
|
2012-11-26 16:28:46 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
dopop: sta tmp1 ; will loose high byte
|
2018-05-22 13:59:05 +00:00
|
|
|
jsr popax ; get s to ptr2
|
2013-05-09 11:56:54 +00:00
|
|
|
sta ptr2
|
|
|
|
stx ptr2+1
|
2018-05-22 13:59:05 +00:00
|
|
|
sta ptr3 ; save for return
|
2013-05-09 11:56:54 +00:00
|
|
|
stx ptr3+1
|
2018-05-22 13:59:05 +00:00
|
|
|
jsr popptr1 ; get low word of value to ptr1
|
|
|
|
jsr popax ; get high word of value to sreg
|
|
|
|
sta sreg
|
|
|
|
stx sreg+1
|
2013-05-09 11:56:54 +00:00
|
|
|
rts
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
;
|
|
|
|
; ltoa
|
|
|
|
;
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
_ltoa: jsr dopop ; pop the arguments
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
; We must handle $80000000 in a special way, since it is the only negative
|
|
|
|
; number that has no positive 32-bit counterpart
|
|
|
|
|
2018-05-22 13:59:05 +00:00
|
|
|
ldx sreg+1 ; get high byte
|
2013-05-09 11:56:54 +00:00
|
|
|
ldy tmp1 ; get radix
|
|
|
|
cpy #10
|
|
|
|
bne ultoa
|
2018-05-22 13:59:05 +00:00
|
|
|
lda sreg
|
|
|
|
ora ptr1+1
|
|
|
|
ora ptr1
|
2013-05-09 11:56:54 +00:00
|
|
|
bne L2
|
|
|
|
cpx #$80
|
|
|
|
bne L2
|
|
|
|
|
|
|
|
ldy #11
|
|
|
|
L1: lda __longminstr,y ; copy -2147483648
|
2018-05-22 13:59:05 +00:00
|
|
|
sta (ptr2),y
|
2013-05-09 11:56:54 +00:00
|
|
|
dey
|
|
|
|
bpl L1
|
|
|
|
jmp L10
|
2012-11-26 16:28:46 +00:00
|
|
|
|
2000-05-28 13:40:48 +00:00
|
|
|
; Check if the value is negative. If so, write a - sign and negate the
|
|
|
|
; number.
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
L2: txa ; get high byte
|
|
|
|
bpl ultoa
|
|
|
|
lda #'-'
|
2018-05-22 13:59:05 +00:00
|
|
|
|
|
|
|
.if (.cpu .bitand CPU_ISET_65SC02)
|
|
|
|
sta (ptr2)
|
|
|
|
.else
|
2013-05-09 11:56:54 +00:00
|
|
|
ldy #0
|
2018-05-22 13:59:05 +00:00
|
|
|
sta (ptr2),y ; store sign
|
|
|
|
.endif
|
|
|
|
|
|
|
|
inc ptr2
|
2013-05-09 11:56:54 +00:00
|
|
|
bne L3
|
2018-05-22 13:59:05 +00:00
|
|
|
inc ptr2+1
|
2013-05-09 11:56:54 +00:00
|
|
|
|
2018-05-22 13:59:05 +00:00
|
|
|
L3: lda ptr1 ; negate val
|
|
|
|
ldx ptr1+1
|
|
|
|
|
|
|
|
jsr negeax
|
|
|
|
|
|
|
|
sta ptr1
|
|
|
|
stx ptr1+1
|
2013-05-09 11:56:54 +00:00
|
|
|
jmp ultoa
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
;
|
|
|
|
; utoa
|
|
|
|
;
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
_ultoa: jsr dopop ; pop the arguments
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
; Convert to string by dividing and push the result onto the stack
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
ultoa: lda #$00
|
|
|
|
pha ; sentinel
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
; Divide val/tmp1 -> val, remainder in a
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
L5: ldy #32 ; 32 bit
|
|
|
|
lda #0 ; remainder
|
2018-05-22 13:59:05 +00:00
|
|
|
L6: asl ptr1
|
|
|
|
rol ptr1+1
|
|
|
|
rol sreg
|
|
|
|
rol sreg+1
|
2013-05-09 11:56:54 +00:00
|
|
|
rol a
|
|
|
|
cmp tmp1
|
|
|
|
bcc L7
|
|
|
|
sbc tmp1
|
2018-05-22 13:59:05 +00:00
|
|
|
inc ptr1
|
2013-05-09 11:56:54 +00:00
|
|
|
L7: dey
|
|
|
|
bne L6
|
|
|
|
|
|
|
|
tay ; get remainder into y
|
|
|
|
lda __hextab,y ; get hex character
|
|
|
|
pha ; save char value on stack
|
|
|
|
|
2018-05-22 13:59:05 +00:00
|
|
|
lda ptr1
|
|
|
|
ora ptr1+1
|
|
|
|
ora sreg
|
|
|
|
ora sreg+1
|
2013-05-09 11:56:54 +00:00
|
|
|
bne L5
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
; Get the characters from the stack into the string
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
ldy #0
|
|
|
|
L9: pla
|
2018-05-22 13:59:05 +00:00
|
|
|
sta (ptr2),y
|
2013-05-09 11:56:54 +00:00
|
|
|
beq L10 ; jump if sentinel
|
|
|
|
iny
|
|
|
|
bne L9 ; jump always
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
; Done! Return the target string
|
|
|
|
|
2018-05-22 13:59:05 +00:00
|
|
|
L10: lda ptr3
|
|
|
|
ldx ptr3+1
|
2013-05-09 11:56:54 +00:00
|
|
|
rts
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|