Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- HL_Div_C:
- ;Inputs:
- ; HL is the numerator
- ; C is the denominator
- ;Outputs:
- ; A is the remainder
- ; B is 0
- ; C is not changed
- ; DE is not changed
- ; HL is the quotient
- ;
- ld b,16
- xor a
- add hl,hl
- rla
- cp c
- jr c,$+4
- inc l
- sub c
- djnz $-7
- ret
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement