Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

1 Answer
Maheshwari Thakur

In this program we will see how to subtract two 8-bit BCD numbers.

Problem Statement

Write 8086 Assembly language program to subtract two 8-bit BCD number stored in memory address offset 600.

Discussion

This task is too simple. Here we are taking the numbers from memory and after adding we need to put DAS instruction to adjust the accumulator content to decimal form after the subtraction operation. The DAS will check the AC and CY flags to adjust a number to its decimal form.

Input

Address
Data


500
99
501
25


 

Flow Diagram

 

Program

 

Output

Address
Data


600
74
601
00


Advertisements

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.