Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- C_Div_D:
- ;Inputs:
- ; C is the numerator
- ; D is the denominator
- ;Outputs:
- ; A is the remainder
- ; B is 0
- ; C is the result of C/D
- ; D,E,H,L are not changed
- ;
- ld b,8
- xor a
- sla c
- rla
- cp d
- jr c,$+4
- inc c
- sub d
- djnz $-8
- ret
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement