- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
8086 program to multiply two 8-bit numbers
In this program we will see how to multiply two 8-bit numbers.
Problem Statement
Write 8086 Assembly language program to multiply two 8-bit numbers stored in memory address offset 500 and 501.
Discussiont
In 8086 there is MUL instruction. So the task is too simple. Here we are taking the numbers from memory and after that performing the multiplication operation. As 8-bit numbers are taken, after multiplication AX (16-bit) will store the result.
Input
Address | Data |
---|---|
… | … |
500 | 99 |
501 | 25 |
… | … |
Flow Diagram
Program
Output
Address | Data |
---|---|
… | … |
600 | 1D |
601 | 16 |
… | … |
- Related Articles
- 8086 program to multiply two 16-bit numbers
- 8086 program to add two 8 bit BCD numbers
- 8086 program to subtract two 8 bit BCD numbers
- 8051 Program to Multiply two 8 Bit numbers
- 8085 program to multiply two 8 bit numbers
- Program to Multiply two 8 Bit numbers in 8051 Microprocessor
- 8085 program to multiply two 8 bit numbers using logical instructions
- 8085 Program to multiply two 8-bit numbers (shift and add method)
- 8086 program to subtract two 16 bit BCD numbers
- 8086 program to reverse 8 bit number using 8 bit operation
- 8085 Program to multiply two 16-bit binary numbers
- Program to multiply two 8-bit numbers (shift and add method) in 8085 Microprocessor
- 8086 program to add two 16 bit BCD numbers with carry
- 8086 program to reverse 16 bit number using 8 bit operation
- 8085 Program to Multiply two 8 bits numbers

Advertisements