1
0
mirror of https://github.com/cc65/cc65.git synced 2026-03-10 17:21:49 +00:00
Files
cc65/libsrc/runtime/lsub.s

51 lines
1.1 KiB
ArmAsm

;
; Ullrich von Bassewitz, 05.08.1998
; Christian Krueger, 11-Mar-2017, ímproved 65SC02 optimization
; CC65 runtime: long sub
;
;
; EAX = TOS - EAX
;
.export tossub0ax, tossubeax
.import addysp1
.importzp c_sp, sreg
tossub0ax:
.if .cap(CPU_HAS_STZ)
stz sreg
stz sreg+1
.else
ldy #$00
sty sreg
sty sreg+1
.endif
tossubeax:
sec
eor #$FF
.if .cap(CPU_HAS_ZPIND)
adc (c_sp) ; 65SC02 version - saves 2 cycles
ldy #1
.else
ldy #0
adc (c_sp),y ; lo byte
iny
.endif
pha ; Save low byte
txa
eor #$FF
adc (c_sp),y ; byte 1
tax
iny
lda (c_sp),y
sbc sreg ; byte 2
sta sreg
iny
lda (c_sp),y
sbc sreg+1 ; byte 3
sta sreg+1
pla ; Restore byte 0
jmp addysp1 ; Drop TOS