;external cnt |
cnt is a temporary counter variable used by MultBB and DivideIB. Declare register in main program. |
;external multA |
multA is used as a multiplier by multBB and divisor by DivideIB. Declare register in main program. |
;external multB |
multB is used as a multiplier by MultBB and as a quotient by DivideIB. Declare register in main program. |
;external prodH |
prodH is the upper byte of a two byte variable. It is the product of MultBB and the dividend of DivideIB. Declare register in main program. |
;external prodL |
prodL is the lower byte of a two byte variable. It is the product of MultBB and the dividend of DivideIB. Declare register in main program.
|