2001-11-17 11:25:12 +00:00
|
|
|
;
|
2000-05-28 13:40:48 +00:00
|
|
|
; Ullrich von Bassewitz, 07.04.2000
|
|
|
|
;
|
|
|
|
; CC65 runtime: -= operator
|
|
|
|
;
|
|
|
|
; On entry, the low byte of the address of the variable to decrement is
|
|
|
|
; in ptr1, the high byte is in Y, and the decrement is in eax.
|
|
|
|
;
|
|
|
|
|
|
|
|
.export lsubeq1, lsubeqa, lsubeq
|
2001-11-17 11:25:12 +00:00
|
|
|
.importzp sreg, ptr1
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
lsubeq1:
|
|
|
|
lda #$01
|
|
|
|
|
|
|
|
lsubeqa:
|
|
|
|
ldx #$00
|
|
|
|
stx sreg
|
|
|
|
stx sreg+1
|
|
|
|
|
|
|
|
lsubeq: sty ptr1+1 ; Store high byte of address
|
|
|
|
ldy #$00 ; Address low byte
|
|
|
|
sec
|
|
|
|
|
2001-11-17 11:25:12 +00:00
|
|
|
eor #$FF
|
|
|
|
adc (ptr1),y ; Subtract byte 0
|
2000-05-28 13:40:48 +00:00
|
|
|
sta (ptr1),y
|
|
|
|
pha ; Save byte 0 of result for later
|
|
|
|
|
|
|
|
iny ; Address byte 1
|
2001-11-17 11:25:12 +00:00
|
|
|
txa
|
|
|
|
eor #$FF
|
|
|
|
adc (ptr1),y ; Subtract byte 1
|
2000-05-28 13:40:48 +00:00
|
|
|
sta (ptr1),y
|
|
|
|
tax
|
|
|
|
|
|
|
|
iny ; Address byte 2
|
|
|
|
lda (ptr1),y
|
|
|
|
sbc sreg
|
|
|
|
sta (ptr1),y
|
|
|
|
sta sreg
|
|
|
|
|
|
|
|
iny ; Address byte 3
|
|
|
|
lda (ptr1),y
|
|
|
|
sbc sreg+1
|
|
|
|
sta (ptr1),y
|
|
|
|
sta sreg+1
|
|
|
|
|
2001-11-17 11:25:12 +00:00
|
|
|
pla ; Retrieve byte 0 of result
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2001-11-17 11:25:12 +00:00
|
|
|
rts ; Done
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|