- 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
8085 program to swap two 8-bit numbers
In this program we will see how to swap two numbers.
Problem Statement
Write 8085 Assembly language program to swap two 8-bit number stored at location 8000Hand 8001H.
Discussion
In 8085, there is an instruction XCHG. Using this we can swap the contents of DE and HL values. We are taking the numbers and storing them into H and D, then using XCHG the contents are swapped.
Input
Address | Data |
---|---|
. . . | . . . |
8000 | CD |
8001 | 34 |
. . . | . . . |
Flow Diagram
Program
Address | HEX Codes | Mnemonics | Comments |
---|---|---|---|
F000 | 3A, 00, 80 | LDA 8000H | Load the first number into A |
F003 | 67 | MOV H, A | Store the number into H |
F004 | 3A, 01, 80 | LDA 8001H | Load the second number into A |
F007 | 57 | MOV D, A | Store the number into D |
F008 | EB | XCHG | Exchange DE and HL |
F009 | 7C | MOV A, H | Take H content to A |
F00A | 32, 00, 80 | STA 8000H | Store the first number after swap |
F00D | 7A | MOV A, D | Take D content to A |
F00E | 32, 01, 80 | STA 8001H | Store the second number after swap |
F011 | 76 | HLT | Terminate the program |
Output
Address | Data |
---|---|
. . . | . . . |
8000 | 34 |
8001 | CD |
. . . | . . . |
- Related Articles
- 8085 program to swap two 8 bit numbers using Direct addressing mode
- 8085 Program to Add two 8 Bit numbers
- 8085 Program to Subtract two 8 Bit numbers
- 8085 Program to Divide two 8 Bit numbers
- 8085 program to multiply two 8 bit numbers
- 8085 program to swap two 16-bit numbers using Direct addressing mode
- 8085 program to find larger of two 8 bit numbers
- 8085 program to find maximum of two 8 bit numbers
- Program to Add two 8 Bit numbers in 8085 Microprocessor
- Program to Subtract two 8 Bit numbers in 8085 Microprocessor
- Program to Divide two 8 Bit numbers in 8085 Microprocessor
- 8085 program to multiply two 8 bit numbers using logical instructions
- 8085 program to sum of two 8 bit numbers without carry
- 8085 program to subtract two 8-bit numbers with or without borrow
- 8085 Program to multiply two 8-bit numbers (shift and add method)

Advertisements