
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Find Sum of Digits of 8-Bit Number in 8086
In this program we will see how to add the digits of an 8-bit number.
Problem Statement
Write 8086 Assembly language program to add the digits of an 8-bit number stored in memory address 2000H.
Discussion
To get the digits of an 8-bit number, we can use the masking operation. At first we will mask the upper nibble, and then the lower nibble. After masking the upper nibble, we have to rotate it to the right to make it least significant nibble. Then we can simply add it to the stored nibble to get the sum.
Input
Address |
Data |
---|---|
… |
… |
2000 |
8A |
… |
… |
Flow Diagram
Program
Output
Address |
Data |
---|---|
… |
… |
2001 |
12 |
… |
… |
Advertisements