8086 program to add two 16 bit BCD numbers with carry


In this program we will see how to add two 16-bit BCD numbers with carry.

Problem Statement

Write 8086 Assembly language program to add two 16-bit BCD numbers stored in memory offset 500H – 501H and 502H – 503H.

Discussion

Here we are adding the 16-bit data byte by byte. At first we are adding lower byte and perform the DAA instruction, then Add higher bytes with carry, and again DAA to adjust. The final result is stored at location offset 600H, and if carry is present, it will be stored at 601H.

We are taking two numbers 8523 + 7496 = 16019

Input

Address
Data


500
23
501
85
502
96
503
74


 

Flow Diagram

 

Program

 

Output

Address
Data


600
19
601
60
602
01


Updated on: 30-Jul-2019

2K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements