/I

Top  Previous  Next

 

Divide accu 2 by accu 1 as integer.

 

Accu 2 is divided by accu 1 and the result is stored in accu 1. Accu 2 stays unchanged. The remainder of the division is stored in accu 1-L. That is why the the accu 1 appears often as gigantic big number in the monitoring mode after dividing. As long as the following transfer operation relates only to words the result of the division is still correct. The remainder of the division kann be shifted with the operation SRD 16 (shift to the left side about 16 bits) into the word area of accu 1.

 

 L         2000

 L        MW 12

 /I

 T        MW 14  // in MW 14 is now displayed 2000 / MW 12

 SRD 16

 T        MW 16  // in MW 16 is now displayed the remainder of the division

 

 

See also:

EN-input and ENO-output

/D

/R

+I

-I

*I

SRD

 

List of operations