Difference between revisions of "83Plus:BCALLs:4012"

From WikiTI
Jump to: navigation, search
(No difference)

Revision as of 15:35, 7 April 2005

Synopsis

Official Name: DivHLByA

BCALL Address: 4012

Divides the value in HL by the value in A.

Inputs

  • HL: integer
  • A: integer

Outputs

  • HL = HL / A
  • A = HL mod A

Registers Destroyed

  • none

Comments

Simple enough to implement if speed is important.

Example

ld hl,13
ld a,5
B_CALL DivHLByA  ;should return HL=2, A=3