1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-07 04:29:01 +00:00
cc65/libsrc/runtime/toslong.s

63 lines
1005 B
ArmAsm
Raw Normal View History

;
; Ullrich von Bassewitz, 25.10.2000
;
; CC65 runtime: Convert tos from int to long
;
.export tosulong, toslong
.import decsp2
.importzp sp
; Convert TOS from int to long
tosulong:
pha
jsr decsp2 ; Make room
ldy #2
lda (sp),y
.ifpc02
sta (sp) ; 65C02 version
iny ; Y = 3
.else
ldy #0
sta (sp),y
ldy #3
.endif
lda (sp),y
ldy #1
sta (sp),y
lda #0 ; Zero extend
toslong2:
iny
sta (sp),y
iny
sta (sp),y
pla
rts
toslong:
pha
jsr decsp2 ; Make room
ldy #2
lda (sp),y
.ifpc02
sta (sp) ; 65C02 version
iny ; Y = 3
.else
ldy #0
sta (sp),y
ldy #3
.endif
lda (sp),y
bmi toslong1
ldy #1
sta (sp),y
lda #$00 ; Positive, high word is zero
bne toslong2
toslong1:
ldy #1
sta (sp),y
lda #$FF
bne toslong2