1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-19 07:29:02 +00:00
cc65/libsrc/runtime/ladd.s
uz 3c168b4323 A few minor 65C02 optimizations.
git-svn-id: svn://svn.cc65.org/cc65/trunk@3944 b7a2c559-68d2-44c3-8de9-860c34a00d81
2009-02-22 15:39:19 +00:00

40 lines
634 B
ArmAsm

;
; Ullrich von Bassewitz, 05.08.1998
;
; CC65 runtime: long add
;
.export tosaddeax
.import addysp1
.importzp sp, sreg, tmp1
.macpack cpu
; EAX = TOS + EAX
tosaddeax:
clc
.if (.cpu .bitand CPU_ISET_65SC02)
adc (sp) ; 65SC02 version - saves 2 cycles
ldy #1
.else
ldy #0
adc (sp),y ; lo byte
iny
.endif
sta tmp1 ; use as temp storage
txa
adc (sp),y ; byte 1
tax
iny
lda sreg
adc (sp),y ; byte 2
sta sreg
iny
lda sreg+1
adc (sp),y ; byte 3
sta sreg+1
lda tmp1 ; load byte 0
jmp addysp1 ; drop TOS