mu/314divide.subx
Kartik Agaram 6f65b65f7d 7290
I've wrestled for a long time with how to support integer division with
its hard-coded registers. The answer's always been staring me in the face:
just turn it into a function! We already expect function outputs to go
to hard-coded registers.
2020-11-27 21:37:20 -08:00

18 lines
429 B
Plaintext

== code
integer-divide: # a: int, b: int -> quotient/eax: int, remainder/edx: int
# . prologue
55/push-ebp
89/<- %ebp 4/r32/esp
# eax = a
8b/-> *(ebp+8) 0/r32/eax
# edx = all 0s or all 1s
99/sign-extend-eax-into-edx
# quotient, remainder = divide eax by b
f7 7/subop/divide-eax-edx-by *(ebp+0xc)
$integer-divide:end:
# . epilogue
89/<- %esp 5/r32/ebp
5d/pop-to-ebp
c3/return