- 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
What is data transfer instruction process in Computer Architecture?
Data transfer instructions transfer the data between memory and processor registers, processor registers, and I/O devices, and from one processor register to another. There are eight commonly used data transfer instructions. Each instruction is represented by a mnemonic symbol.
The table shows the eight data transfer instructions and their respective mnemonic symbols.
Data Transfer Instructions
Name | Mnemonic Symbols |
---|---|
Load | LD |
Store | ST |
Move | MOV |
Exchange | XCH |
Input | In |
Output | OUT |
Push | PUSH |
Pop | POP |
The instructions can be described as follows −
- Load − The load instruction is used to transfer data from the memory to a processor register, which is usually an accumulator.
- Store − The store instruction transfers data from processor registers to memory.
- Move − The move instruction transfers data from processor register to memory or memory to processor register or between processor registers itself.
- Exchange − The exchange instruction swaps information either between two registers or between a register and a memory word.
- Input − The input instruction transfers data between the processor register and the input terminal.
- Output − The output instruction transfers data between the processor register and the output terminal.
- Push and Pop − The push and pop instructions transfer data between a processor register and memory stack.
All these instructions are associated with a variety of addressing modes. Some assembly language instructions use different mnemonic symbols just to differentiate between the different addressing modes.
Example − The mnemonic symbols for load immediate is LDI.
Thus, it is necessary to be familiar with various addressing modes and different types of instructions to write efficient assembly language programs for a computer.
- Related Articles
- What is Asynchronous Data Transfer in Computer Architecture?
- What is Instruction Cycle in Computer Architecture?
- What is Instruction Mapping in Computer Architecture?
- What is Instruction Pipeline in Computer Architecture?
- What is Bus Transfer in Computer Architecture?
- What is Memory Transfer in Computer Architecture?
- Discuss the Data Transfer Schemes in Computer Architecture?
- What is Asynchronous Serial Transfer in computer architecture?
- What are Instruction Cycles in computer architecture?
- What is the layout of Pipelined Instruction in computer architecture?
- What is Direct Mapping Process in Computer Architecture?
- What are Instruction Codes and Operands in Computer Architecture?
- Implementation of Global Instruction Scheduling in computer architecture
- Explain the various DMA transfer modes in computer architecture?
- What is computer architecture?
