1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 07:29:33 +00:00

Optimize a negation in signed division.

This commit is contained in:
Piotr Fusik 2019-11-05 20:15:34 +01:00 committed by Oliver Schmidt
parent 0d21a2b5a4
commit 2bec637637

View File

@ -29,19 +29,18 @@ idiv32by16r16:
stx ptr3+1
lda ptr2+1
cmp #$80
eor tmp1
sta tmp1
bit ptr2+1
bpl @L3
bcc @L3
; Negate the value in ptr1:ptr2
ldx #0
ldy #4
sec
@L2: lda ptr1,x
eor #$FF
adc #$00
; sec
@L2: lda #$00
sbc ptr1,x
sta ptr1,x
inx
dey