pokecrystal-board/home/math.asm

50 lines
611 B
NASM
Raw Normal View History

2018-06-24 07:09:41 -07:00
SimpleMultiply::
; Return a * c.
and a
ret z
push bc
ld b, a
xor a
.loop
add c
dec b
jr nz, .loop
pop bc
ret
2018-06-24 07:09:41 -07:00
SimpleDivide::
; Divide a by c. Return quotient b and remainder a.
ld b, 0
.loop
inc b
sub c
jr nc, .loop
dec b
add c
ret
2018-06-24 07:09:41 -07:00
Multiply::
; Multiply hMultiplicand (3 bytes) by hMultiplier. Result in hProduct.
; All values are big endian.
push hl
push bc
2017-12-24 09:47:30 -08:00
callfar _Multiply
pop bc
pop hl
ret
2018-06-24 07:09:41 -07:00
Divide::
; Divide hDividend length b (max 4 bytes) by hDivisor. Result in hQuotient.
; All values are big endian.
push hl
push de
push bc
2016-05-27 07:41:59 -07:00
homecall _Divide
pop bc
pop de
pop hl
ret