Open In App
Related Articles

8086 program to determine modulus of first array elements corresponding to another array elements

Improve Article
Improve
Save Article
Save
Like Article
Like

Problem – Write a program in 8086 microprocessor to determine modulus of corresponding 8 bit n elements of first array with 8-bit n numbers of second array, where size “n” is stored at offset 500 and the numbers of first array are stored from offset 501 and the numbers of second array are stored from offset 601 and store the result numbers into first array i.e offset 501.

Example –

Algorithm –

  1. Store 500 to SI and 601 to DI and Load data from offset 500 to register CL and set register CH to 00 (for count).
  2. Increase the value of SI by 1.
  3. Load first number(value) from next offset (i.e 501) to register AL.
  4. store 00 at register AH.
  5. Divide the value in register AX by value at offset DI.
  6. Store the result (value of register AH ) to memory offset SI.
  7. Increase the value of SI by 1.
  8. Increase the value of DI by 1.
  9. Loop above 6 till register CX gets 0.

Program –

MEMORY ADDRESSMNEMONICSCOMMENT
400MOV SI, 500SI<-500
403MOV CL, [SI]CL<-[SI]
405MOV CH, 00CH<-00
407INC SISI<-SI+1
408MOV DI, 601DI<-601
40BMOV AL, [SI]AL<-[SI]
40DMOV AH, 00AH<-00
40FDIV [DI]AX=AX/[DI]
411MOV [SI], AHAH->[SI]
413INC SISI<-SI+1
414INC DIDI<-DI+1
415LOOP 40BJUMP TO 40B IF CX!=0 and CX=CX-1
417HLTend

Explanation –

  1. MOV SI, 500: set the value of SI to 500
  2. MOV CL, [SI]: load data from offset SI to register CL
  3. MOV CH, 00: set value of register CH to 00
  4. INC SI: increase value of SI by 1.
  5. MOV DI, 600: set the value of DI to 600.
  6. MOV AL, [SI]: load value from offset SI to register AL
  7. MOV AH, 00: set value of register AH to 00.
  8. DIV [DI]: Divide value of register AX by content at offset DI.
  9. MOV [SI], AH: store value of register AH at offset SI.
  10. INC SI: increase value of SI by 1.
  11. INC DI: increase value of DI by 1.
  12. LOOP 408: jump to address 408 if CX not 0 and CX=CX-1.
  13. HLT: stop
Last Updated : 02 Aug, 2018
Like Article
Save Article
Similar Reads