2000-05-28 13:40:48 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 05.08.1998
|
2017-03-12 22:21:43 +00:00
|
|
|
; Christian Krueger, 11-Mar-2017, added 65SC02 optimization
|
2000-05-28 13:40:48 +00:00
|
|
|
;
|
|
|
|
; CC65 runtime: long sub reversed
|
|
|
|
;
|
|
|
|
|
|
|
|
;
|
|
|
|
; EAX = EAX - TOS
|
|
|
|
;
|
2013-05-09 11:56:54 +00:00
|
|
|
.export tosrsub0ax, tosrsubeax
|
|
|
|
.import addysp1
|
|
|
|
.importzp sp, sreg, tmp1
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2017-03-12 22:21:43 +00:00
|
|
|
.macpack cpu
|
|
|
|
|
2009-08-16 16:38:52 +00:00
|
|
|
tosrsub0ax:
|
2017-03-12 22:21:43 +00:00
|
|
|
.if (.cpu .bitand ::CPU_ISET_65SC02)
|
|
|
|
stz sreg
|
|
|
|
stz sreg+1
|
|
|
|
.else
|
2009-08-16 16:38:52 +00:00
|
|
|
ldy #$00
|
|
|
|
sty sreg
|
|
|
|
sty sreg+1
|
2017-03-12 22:21:43 +00:00
|
|
|
.endif
|
2009-08-16 16:38:52 +00:00
|
|
|
|
2017-03-12 22:21:43 +00:00
|
|
|
tosrsubeax:
|
2013-05-09 11:56:54 +00:00
|
|
|
sec
|
2017-03-12 22:21:43 +00:00
|
|
|
.if (.cpu .bitand ::CPU_ISET_65SC02)
|
|
|
|
sbc (sp)
|
|
|
|
ldy #1
|
|
|
|
.else
|
|
|
|
ldy #0
|
2013-05-09 11:56:54 +00:00
|
|
|
sbc (sp),y ; byte 0
|
2017-03-12 22:21:43 +00:00
|
|
|
iny
|
|
|
|
.endif
|
2013-05-09 11:56:54 +00:00
|
|
|
sta tmp1 ; use as temp storage
|
|
|
|
txa
|
|
|
|
sbc (sp),y ; byte 1
|
|
|
|
tax
|
|
|
|
iny
|
|
|
|
lda sreg
|
|
|
|
sbc (sp),y ; byte 2
|
|
|
|
sta sreg
|
|
|
|
iny
|
|
|
|
lda sreg+1
|
|
|
|
sbc (sp),y ; byte 3
|
|
|
|
sta sreg+1
|
|
|
|
lda tmp1
|
|
|
|
jmp addysp1 ; drop TOS
|
2000-05-28 13:40:48 +00:00
|
|
|
|