mirror of
https://github.com/cc65/cc65.git
synced 2024-11-03 10:07:02 +00:00
27 lines
356 B
ArmAsm
27 lines
356 B
ArmAsm
|
;
|
||
|
; Ullrich von Bassewitz, 25.10.2000
|
||
|
;
|
||
|
; CC65 runtime: Convert int in ax into a long
|
||
|
;
|
||
|
|
||
|
.export axulong, axlong
|
||
|
.importzp sreg
|
||
|
|
||
|
; Convert AX from int to long in EAX
|
||
|
|
||
|
axulong:
|
||
|
ldy #0
|
||
|
sty sreg
|
||
|
sty sreg+1
|
||
|
rts
|
||
|
|
||
|
axlong: cpx #$80 ; Positive?
|
||
|
bcc axulong ; Yes, handle like unsigned type
|
||
|
ldy #$ff
|
||
|
sty sreg
|
||
|
sty sreg+1
|
||
|
rts
|
||
|
|
||
|
|
||
|
|