Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

8086 program to add two 16-bit numbers with or without carry

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

Problem – Write a program to add two 16-bit numbers where starting address is 2000 and the numbers are at 3000 and 3002 memory address and store result into 3004 and 3006 memory address.

Example –

Algorithm –

  1. Load 0000H into CX register (for carry)
  2. Load the data into AX(accumulator) from memory 3000
  3. Load the data into BX register from memory 3002
  4. Add BX with Accumulator AX
  5. Jump if no carry
  6. Increment CX by 1
  7. Move data from AX(accumulator) to memory 3004
  8. Move data from CX register to memory 3006
  9. Stop

Program –

MemoryMnemonicsOperandsComment
2000MOVCX, 0000[CX] <- 0000
2003MOVAX, [3000][AX] <- [3000]
2007MOVBX, [3002][BX] <- [3002]
200BADDAX, BX[AX] <- [AX] + [BX]
200DJNC2010Jump if no carry
200FINCCX[CX] <- [CX] + 1
2010MOV[3004], AX[3004] <- [AX]
2014MOV[3006], CX[3006] <- [CX]
2018HLTStop

Explanation –

  1. MOV is used to load and store data.
  2. ADD is used to add two numbers where their one number is in accumulator or not.
  3. JNC is a 2-bit command which is used to check whether the carry is generated from accumulator or not.
  4. INC is used to increment an register by 1.
  5. HLT is used to stop the program.
  6. AX is an accumulator which is used to load and store the data.
  7. BX, CX are general purpose registers where BX is used for storing second number and CX is used to store carry.
My Personal Notes arrow_drop_up
Last Updated : 22 May, 2018
Like Article
Save Article
Similar Reads