SlideShare a Scribd company logo
1 of 10
ADDRESSING MODES
OF 8085
1
C.Suganthi Evangeline
Batch 3
Microprocessor and
Interfacing Techniques
Addressing Modes of 8085
2
To perform any operation, we have to
give the corresponding instructions to
the microprocessor.
In each instruction, programmer has to
specify 3 things:
◦ Operation to be performed.
◦ Address of source of data.
◦ Address of destination of result.
Addressing Modes of 8085
3
The method by which the address
of source of data or the address of
destination of result is given in the
instruction is called Addressing
Modes.
The term addressing mode refers
to the way in which the operand of
the instruction is specified.
Types of Addressing Modes
4
Intel 8085 uses the following
addressing modes:
1. Direct Addressing Mode
2. Register Addressing Mode
3. Register Indirect Addressing Mode
4. Immediate Addressing Mode
5. Implicit Addressing Mode
Direct Addressing Mode
In this mode, the address of the
operand is given in the instruction
itself.
LDA is the operation.
2500 H is the address of
source.
Accumulator is the destination.
LDA 2500 H
5
Load the contents of memory
location 2500 H in accumulator.
Register Addressing Mode
In this mode, the operand is in general
purpose register.
MOV is the operation.
B is the source of
data.
A is the destination.
MOV A, B
6
Move the contents of register B to
A.
Register Indirect Addressing
Mode
In this mode, the address of operand
is specified by a register pair.
MOV is the operation.
M is the memory location specified
by
H-L register pair.
A is the destination.
MOV A, M
7
Move data from memory location
specified by H-L pair to accumulator.
Immediate Addressing Mode
In this mode, the operand is specified
within the instruction itself.
MVI is the operation.
05 H is the immediate data
(source).
A is the destination.
MVI A, 05 H
8
Move 05 H in accumulator.
Implicit Addressing Mode
If address of source of data as well as
address of destination of result is fixed,
then there is no need to give any
operand along with the instruction.
CMA Complement accumulator.
CMA is the operation.
A is the source.
A is the destination.
9
101

More Related Content

What's hot

Timing and-control-unit
Timing and-control-unitTiming and-control-unit
Timing and-control-unitAnuj Modi
 
Intelligent transportation system ITS
Intelligent transportation system ITSIntelligent transportation system ITS
Intelligent transportation system ITSJYOTIRANJAN43
 
AUXILIARY POWER SUPPLY SCHEME FOR THERMAL POWER PLANT
AUXILIARY POWER SUPPLY SCHEME FOR THERMAL POWER PLANTAUXILIARY POWER SUPPLY SCHEME FOR THERMAL POWER PLANT
AUXILIARY POWER SUPPLY SCHEME FOR THERMAL POWER PLANTsheikhalfiya
 
Microprocessor Part 2
Microprocessor    Part 2Microprocessor    Part 2
Microprocessor Part 2Sajan Agrawal
 
flag register of 8086
flag register of 8086flag register of 8086
flag register of 8086asrithak
 
Flag register 8086 assignment
Flag register 8086 assignmentFlag register 8086 assignment
Flag register 8086 assignmentZia3130
 
Inter Connected Power System(Turbine Speed Governing Mechanism )
Inter Connected Power System(Turbine Speed Governing Mechanism)Inter Connected Power System(Turbine Speed Governing Mechanism)
Inter Connected Power System(Turbine Speed Governing Mechanism )Raviraj solanki
 
SOLID STATE TRANSFORMER - USING FLYBACK CONVERTER
SOLID STATE TRANSFORMER - USING FLYBACK CONVERTERSOLID STATE TRANSFORMER - USING FLYBACK CONVERTER
SOLID STATE TRANSFORMER - USING FLYBACK CONVERTERAbhin Mohan
 
Braking methods of induction motor
Braking methods of induction motorBraking methods of induction motor
Braking methods of induction motorraviarmugam
 
Dynamic characteristics of thyristor
Dynamic characteristics of thyristorDynamic characteristics of thyristor
Dynamic characteristics of thyristorNisarg Amin
 
Pipelining and vector processing
Pipelining and vector processingPipelining and vector processing
Pipelining and vector processingKamal Acharya
 
Lecture 8 steady state stability
Lecture 8 steady state stabilityLecture 8 steady state stability
Lecture 8 steady state stabilitySwapnil Gadgune
 
8085:branching and logical instruction
8085:branching and logical instruction8085:branching and logical instruction
8085:branching and logical instructionNemish Bhojani
 
Intel® 80386 microprocessor registers
Intel® 80386 microprocessor registersIntel® 80386 microprocessor registers
Intel® 80386 microprocessor registersNeel Shah
 

What's hot (20)

Fourier integral
Fourier integralFourier integral
Fourier integral
 
Timing and-control-unit
Timing and-control-unitTiming and-control-unit
Timing and-control-unit
 
Intelligent transportation system ITS
Intelligent transportation system ITSIntelligent transportation system ITS
Intelligent transportation system ITS
 
AUXILIARY POWER SUPPLY SCHEME FOR THERMAL POWER PLANT
AUXILIARY POWER SUPPLY SCHEME FOR THERMAL POWER PLANTAUXILIARY POWER SUPPLY SCHEME FOR THERMAL POWER PLANT
AUXILIARY POWER SUPPLY SCHEME FOR THERMAL POWER PLANT
 
Microprocessor Part 2
Microprocessor    Part 2Microprocessor    Part 2
Microprocessor Part 2
 
Power factor
Power factorPower factor
Power factor
 
flag register of 8086
flag register of 8086flag register of 8086
flag register of 8086
 
Es272 ch4b
Es272 ch4bEs272 ch4b
Es272 ch4b
 
Flag register 8086 assignment
Flag register 8086 assignmentFlag register 8086 assignment
Flag register 8086 assignment
 
Inter Connected Power System(Turbine Speed Governing Mechanism )
Inter Connected Power System(Turbine Speed Governing Mechanism)Inter Connected Power System(Turbine Speed Governing Mechanism)
Inter Connected Power System(Turbine Speed Governing Mechanism )
 
SOLID STATE TRANSFORMER - USING FLYBACK CONVERTER
SOLID STATE TRANSFORMER - USING FLYBACK CONVERTERSOLID STATE TRANSFORMER - USING FLYBACK CONVERTER
SOLID STATE TRANSFORMER - USING FLYBACK CONVERTER
 
Braking methods of induction motor
Braking methods of induction motorBraking methods of induction motor
Braking methods of induction motor
 
Restructuring of power grid
Restructuring of power gridRestructuring of power grid
Restructuring of power grid
 
Dynamic characteristics of thyristor
Dynamic characteristics of thyristorDynamic characteristics of thyristor
Dynamic characteristics of thyristor
 
Pipelining and vector processing
Pipelining and vector processingPipelining and vector processing
Pipelining and vector processing
 
Lecture 8 steady state stability
Lecture 8 steady state stabilityLecture 8 steady state stability
Lecture 8 steady state stability
 
8085:branching and logical instruction
8085:branching and logical instruction8085:branching and logical instruction
8085:branching and logical instruction
 
Psms lab manual
Psms lab manualPsms lab manual
Psms lab manual
 
Intel® 80386 microprocessor registers
Intel® 80386 microprocessor registersIntel® 80386 microprocessor registers
Intel® 80386 microprocessor registers
 
TELK Industrial Visit Report
TELK Industrial Visit ReportTELK Industrial Visit Report
TELK Industrial Visit Report
 

Similar to 8085 Addressing Modes Explained: Direct, Register, Indirect and More

lecture7-7_15936_addressing-modes.ppt
lecture7-7_15936_addressing-modes.pptlecture7-7_15936_addressing-modes.ppt
lecture7-7_15936_addressing-modes.pptSwarajKumarPradhan
 
Addressing modes-of-8085
Addressing modes-of-8085 Addressing modes-of-8085
Addressing modes-of-8085 jemimajerome
 
8085 addressing modes
8085 addressing modes8085 addressing modes
8085 addressing modesVijay Kumar
 
Microprocessor - unit 2-Addressing Modes of 8085
Microprocessor - unit 2-Addressing Modes of 8085Microprocessor - unit 2-Addressing Modes of 8085
Microprocessor - unit 2-Addressing Modes of 8085solaiappans
 
Addresing mode and timing diagram
Addresing mode and timing diagramAddresing mode and timing diagram
Addresing mode and timing diagramtrivediau1
 
instruction format and addressing modes
instruction format and addressing modesinstruction format and addressing modes
instruction format and addressing modesRamaPrabha24
 
3. Addressing Modes in 8085 microprocessor.pptx
3. Addressing Modes in 8085 microprocessor.pptx3. Addressing Modes in 8085 microprocessor.pptx
3. Addressing Modes in 8085 microprocessor.pptxISMT College
 
Addressing mode & data transfer instruction of 8085
Addressing mode & data transfer instruction of 8085Addressing mode & data transfer instruction of 8085
Addressing mode & data transfer instruction of 8085Chinmayee samal
 
microprocessor and microcontroller notes ppt
microprocessor and microcontroller notes pptmicroprocessor and microcontroller notes ppt
microprocessor and microcontroller notes pptmananjain543
 
Memory intrface and addrs modes
Memory intrface and addrs modesMemory intrface and addrs modes
Memory intrface and addrs modesbalbirvirdi
 
3-addressingmodes-181203034235.pptx
3-addressingmodes-181203034235.pptx3-addressingmodes-181203034235.pptx
3-addressingmodes-181203034235.pptxMdAsaduzzaman257266
 
Microprocessor and Microcontroller lec3
Microprocessor and Microcontroller lec3Microprocessor and Microcontroller lec3
Microprocessor and Microcontroller lec3Ameen San
 
02 addressing modes 6800
02 addressing modes 680002 addressing modes 6800
02 addressing modes 6800kashambabu
 
Microprocessor and Microcontroller.pptx
Microprocessor and Microcontroller.pptxMicroprocessor and Microcontroller.pptx
Microprocessor and Microcontroller.pptxpvg123456
 
Addressing Modes
Addressing ModesAddressing Modes
Addressing ModesMayank Garg
 

Similar to 8085 Addressing Modes Explained: Direct, Register, Indirect and More (20)

lecture7-7_15936_addressing-modes.ppt
lecture7-7_15936_addressing-modes.pptlecture7-7_15936_addressing-modes.ppt
lecture7-7_15936_addressing-modes.ppt
 
Addressing modes of 8085
Addressing modes of 8085Addressing modes of 8085
Addressing modes of 8085
 
Addressing modes-of-8085
Addressing modes-of-8085Addressing modes-of-8085
Addressing modes-of-8085
 
Addressing modes-of-8085
Addressing modes-of-8085 Addressing modes-of-8085
Addressing modes-of-8085
 
8085 addressing modes
8085 addressing modes8085 addressing modes
8085 addressing modes
 
Microprocessor - unit 2-Addressing Modes of 8085
Microprocessor - unit 2-Addressing Modes of 8085Microprocessor - unit 2-Addressing Modes of 8085
Microprocessor - unit 2-Addressing Modes of 8085
 
Addresing mode and timing diagram
Addresing mode and timing diagramAddresing mode and timing diagram
Addresing mode and timing diagram
 
instruction format and addressing modes
instruction format and addressing modesinstruction format and addressing modes
instruction format and addressing modes
 
3. Addressing Modes in 8085 microprocessor.pptx
3. Addressing Modes in 8085 microprocessor.pptx3. Addressing Modes in 8085 microprocessor.pptx
3. Addressing Modes in 8085 microprocessor.pptx
 
Lecture 10
Lecture 10Lecture 10
Lecture 10
 
addressingmodes8051.ppt
addressingmodes8051.pptaddressingmodes8051.ppt
addressingmodes8051.ppt
 
Addressing mode & data transfer instruction of 8085
Addressing mode & data transfer instruction of 8085Addressing mode & data transfer instruction of 8085
Addressing mode & data transfer instruction of 8085
 
microprocessor and microcontroller notes ppt
microprocessor and microcontroller notes pptmicroprocessor and microcontroller notes ppt
microprocessor and microcontroller notes ppt
 
Memory intrface and addrs modes
Memory intrface and addrs modesMemory intrface and addrs modes
Memory intrface and addrs modes
 
3-addressingmodes-181203034235.pptx
3-addressingmodes-181203034235.pptx3-addressingmodes-181203034235.pptx
3-addressingmodes-181203034235.pptx
 
module-3.pptx
module-3.pptxmodule-3.pptx
module-3.pptx
 
Microprocessor and Microcontroller lec3
Microprocessor and Microcontroller lec3Microprocessor and Microcontroller lec3
Microprocessor and Microcontroller lec3
 
02 addressing modes 6800
02 addressing modes 680002 addressing modes 6800
02 addressing modes 6800
 
Microprocessor and Microcontroller.pptx
Microprocessor and Microcontroller.pptxMicroprocessor and Microcontroller.pptx
Microprocessor and Microcontroller.pptx
 
Addressing Modes
Addressing ModesAddressing Modes
Addressing Modes
 

More from LingalaSowjanya (20)

8251 communication interface
8251 communication interface8251 communication interface
8251 communication interface
 
(724429257) cylindrical coordinate system (1)
(724429257) cylindrical coordinate system (1)(724429257) cylindrical coordinate system (1)
(724429257) cylindrical coordinate system (1)
 
Fet biasing boylestad pages
Fet biasing boylestad pagesFet biasing boylestad pages
Fet biasing boylestad pages
 
01analog filters
01analog filters01analog filters
01analog filters
 
Wave analysers
Wave analysersWave analysers
Wave analysers
 
Transducers (1)
Transducers (1)Transducers (1)
Transducers (1)
 
Thermocouple
ThermocoupleThermocouple
Thermocouple
 
Thermistor
ThermistorThermistor
Thermistor
 
Temperature measurement
Temperature measurementTemperature measurement
Temperature measurement
 
Strain gauge
Strain gaugeStrain gauge
Strain gauge
 
Rtd
RtdRtd
Rtd
 
Pressure measurement
Pressure measurementPressure measurement
Pressure measurement
 
Oscillators (1)
Oscillators (1)Oscillators (1)
Oscillators (1)
 
Multivibrators (1)
Multivibrators (1)Multivibrators (1)
Multivibrators (1)
 
Lvdt
LvdtLvdt
Lvdt
 
Classification of transducer
Classification of transducerClassification of transducer
Classification of transducer
 
Wheatstone bridge
Wheatstone bridgeWheatstone bridge
Wheatstone bridge
 
Energy meter
Energy meterEnergy meter
Energy meter
 
Bridges problems
Bridges   problemsBridges   problems
Bridges problems
 
Bridge ppt 1
Bridge ppt 1Bridge ppt 1
Bridge ppt 1
 

Recently uploaded

Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineeringmalavadedarshan25
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidNikhilNagaraju
 
Call Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call GirlsCall Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call Girlsssuser7cb4ff
 
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfCCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfAsst.prof M.Gokilavani
 
Current Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLCurrent Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLDeelipZope
 
Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxDeepakSakkari2
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...srsj9000
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSKurinjimalarL3
 
power system scada applications and uses
power system scada applications and usespower system scada applications and uses
power system scada applications and usesDevarapalliHaritha
 
chaitra-1.pptx fake news detection using machine learning
chaitra-1.pptx  fake news detection using machine learningchaitra-1.pptx  fake news detection using machine learning
chaitra-1.pptx fake news detection using machine learningmisbanausheenparvam
 
Artificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxArtificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxbritheesh05
 
complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...asadnawaz62
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024hassan khalil
 
Past, Present and Future of Generative AI
Past, Present and Future of Generative AIPast, Present and Future of Generative AI
Past, Present and Future of Generative AIabhishek36461
 
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort servicejennyeacort
 
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionSachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionDr.Costas Sachpazis
 

Recently uploaded (20)

Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineering
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfid
 
Call Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call GirlsCall Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call Girls
 
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfCCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
 
Current Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLCurrent Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCL
 
Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptx
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
 
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
 
power system scada applications and uses
power system scada applications and usespower system scada applications and uses
power system scada applications and uses
 
chaitra-1.pptx fake news detection using machine learning
chaitra-1.pptx  fake news detection using machine learningchaitra-1.pptx  fake news detection using machine learning
chaitra-1.pptx fake news detection using machine learning
 
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Serviceyoung call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
 
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptxExploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
 
Artificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxArtificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptx
 
complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024
 
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
 
Past, Present and Future of Generative AI
Past, Present and Future of Generative AIPast, Present and Future of Generative AI
Past, Present and Future of Generative AI
 
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
 
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionSachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
 

8085 Addressing Modes Explained: Direct, Register, Indirect and More

  • 1. ADDRESSING MODES OF 8085 1 C.Suganthi Evangeline Batch 3 Microprocessor and Interfacing Techniques
  • 2. Addressing Modes of 8085 2 To perform any operation, we have to give the corresponding instructions to the microprocessor. In each instruction, programmer has to specify 3 things: ◦ Operation to be performed. ◦ Address of source of data. ◦ Address of destination of result.
  • 3. Addressing Modes of 8085 3 The method by which the address of source of data or the address of destination of result is given in the instruction is called Addressing Modes. The term addressing mode refers to the way in which the operand of the instruction is specified.
  • 4. Types of Addressing Modes 4 Intel 8085 uses the following addressing modes: 1. Direct Addressing Mode 2. Register Addressing Mode 3. Register Indirect Addressing Mode 4. Immediate Addressing Mode 5. Implicit Addressing Mode
  • 5. Direct Addressing Mode In this mode, the address of the operand is given in the instruction itself. LDA is the operation. 2500 H is the address of source. Accumulator is the destination. LDA 2500 H 5 Load the contents of memory location 2500 H in accumulator.
  • 6. Register Addressing Mode In this mode, the operand is in general purpose register. MOV is the operation. B is the source of data. A is the destination. MOV A, B 6 Move the contents of register B to A.
  • 7. Register Indirect Addressing Mode In this mode, the address of operand is specified by a register pair. MOV is the operation. M is the memory location specified by H-L register pair. A is the destination. MOV A, M 7 Move data from memory location specified by H-L pair to accumulator.
  • 8. Immediate Addressing Mode In this mode, the operand is specified within the instruction itself. MVI is the operation. 05 H is the immediate data (source). A is the destination. MVI A, 05 H 8 Move 05 H in accumulator.
  • 9. Implicit Addressing Mode If address of source of data as well as address of destination of result is fixed, then there is no need to give any operand along with the instruction. CMA Complement accumulator. CMA is the operation. A is the source. A is the destination. 9
  • 10. 101