1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-03 06:29:36 +00:00
cc65/libsrc/runtime/lsub.s
uz b1f772e9be Added additional entry points that clear the high word of the right operand.
git-svn-id: svn://svn.cc65.org/cc65/trunk@4023 b7a2c559-68d2-44c3-8de9-860c34a00d81
2009-08-15 20:58:35 +00:00

48 lines
740 B
ArmAsm

;
; Ullrich von Bassewitz, 05.08.1998
;
; CC65 runtime: long sub
;
;
; EAX = TOS - EAX
;
.export tossub0ax, tossubeax
.import addysp1
.importzp sp, sreg
.macpack cpu
tossub0ax:
ldy #$00
sty sreg
sty sreg+1
tossubeax:
sec
eor #$FF
.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
pha ; Save low byte
txa
eor #$FF
adc (sp),y ; byte 1
tax
iny
lda (sp),y
sbc sreg ; byte 2
sta sreg
iny
lda (sp),y
sbc sreg+1 ; byte 3
sta sreg+1
pla ; Restore byte 0
jmp addysp1 ; Drop TOS