1
0
mirror of https://github.com/cc65/cc65.git synced 2024-09-15 18:55:19 +00:00
cc65/libsrc/runtime/mod.s

33 lines
1.0 KiB
ArmAsm
Raw Normal View History

;
2018-05-24 01:55:40 +00:00
; Christian Krueger, 24-May-2018
;
; CC65 runtime: modulo operation for signed ints
;
; When negating values, we will ignore the possibility here, that one of the
2018-05-24 01:55:40 +00:00
; values is $8000, in which case the negate will fail.
.export tosmoda0, tosmodax
.import absvaludiv16, negax
2018-05-24 01:55:40 +00:00
.importzp sp, sreg, tmp1
tosmoda0:
ldx #0
tosmodax:
2018-05-24 01:55:40 +00:00
; Prepare adjustment of the sign of the result. The sign of the result of the
; modulo operation is the same as that of the left operand.
pha
ldy #1 ; prepare lhs operant hi-byte fetch
lda (sp),y
sta tmp1 ; save post negation indicator to tmp1
pla ; back to entry accu
jsr absvaludiv16
2018-05-24 01:55:40 +00:00
ldx sreg+1 ; remainder to return registers
lda sreg
ldy tmp1 ; fetch indicator
2018-05-24 01:55:40 +00:00
bmi negate
rts
negate: jmp negax