1
0
mirror of https://github.com/cc65/cc65.git synced 2026-04-24 14:17:23 +00:00

Changed naming absvaludiv -> absvaludiv16.

This commit is contained in:
IrgendwerA8
2018-05-24 11:31:43 +02:00
parent dd411efd1c
commit 9c1cb0801c
3 changed files with 8 additions and 8 deletions
+3 -3
View File
@@ -8,7 +8,7 @@
; values is $8000, in which case the negate will fail.
.export tosmoda0, tosmodax
.import absvaludiv, negax
.import absvaludiv16, negax
.importzp sp, sreg, tmp1
tosmoda0:
@@ -23,10 +23,10 @@ tosmodax:
lda (sp),y
sta tmp1 ; save post negation indicator to tmp1
pla ; back to entry accu
jsr absvaludiv
jsr absvaludiv16
ldx sreg+1 ; remainder to return registers
lda sreg
ldy tmp1 ; fetch idicator
ldy tmp1 ; fetch indicator
bmi negate
rts
negate: jmp negax