SlideShare a Scribd company logo
1 of 24
Download to read offline
Instruction Set of Intel 8085
Instruction Set of Intel 8085
• An Instruction is a command given to the computer to perform a specified
operation on given data. The instruction set of a microprocessor is the
collection of the instructions that the microprocessor is designed to execute.
The instructions described here are of Intel 8085.
• These instructions are of Intel Corporation. They cannot be used by other
microprocessor manufactures. The programmer can write a program in
assembly language using these instructions.
• These Instructions have been classified into the following groups:
S. no Description No. of instruction types
1 Data Transfer Group 13
2 Arithmetic Group 20
3 Logical Group 19
4 Branch Control Group 5
5 I/O and Machine Control Group 14
1. Data Transfer Group
• Instructions, which are used to transfer data from one register to another register, from
memory to register or register to memory, come under this group.
• Examples are: MOV, MVI, LXI, LDA, STA etc. When an instruction of data transfer
group is executed, data is transferred from the source to the destination without altering
the contents of the source.
• For example, when MOV A, B is executed the content of the register B is copied into
the register A, and the content of register B remains unaltered. Similarly, when LDA
2500 is executed the content of the memory location 2500 is loaded into the
accumulator. But the content of the memory location 2500 remains unaltered.
2. Arithmetic Group
• The instructions of this group perform arithmetic operations such as addition,
subtraction; increment or decrement of the content of a register or memory.
• Examples are: ADD, SUB, INR, DAD etc.
3. Logical Group
• The Instructions under this group perform logical operation such as AND, OR,
compare, rotate etc.
• Examples are: ANA, XRA, ORA, CMP, and RAL etc.
4. Branch Control Group
• This group includes the instructions for conditional and unconditional jump,
subroutine call and return, and restart. Examples are: JMP, JC, JZ, CALL, CZ, RST
etc.
5. I/O and Machine Control Group
• This group includes the instructions for input/output ports, stack and machine control.
Examples are: IN, OUT, PUSH, POP, and HLT etc.
1. MOV r1, r2
(Move Data; Move the content of the one register to another).
[r1] <-- [r2]
2. MOV r, m
(Move the content of memory register).
r <-- [M]
3. MOV M, r.
(Move the content of register to memory).
M <-- [r]
4. MVI r, data.
(Move immediate data to register).
[r] <-- data.
Data Transfer Group
5. MVI M, data.
(Move immediate data to memory).
M <-- data.
6. LXI rp, data 16.
(Load register pair immediate).
[rp] <-- data 16 bits, [rh] <-- 8 LSBs of data.
7. LDA addr.
(Load Accumulator direct).
[A] <-- [addr].
8. STA addr.
(Store accumulator direct).
[addr] <-- [A].
9. LHLD addr.
(Load H-L pair direct).
[L] <-- [addr], [H] <-- [addr+1].
10. SHLD addr.
(Store H-L pair direct)
[addr] <-- [L], [addr+1] <-- [H].
11. LDAX rp.
(LOAD accumulator indirect)
[A] <-- [[rp]]
12. STAX rp.
(Store accumulator indirect)
[[rp]] <-- [A].
13. XCHG.
(Exchange the contents of H-L with D-E pair)
[H-L] <--> [D-E].
1. ADD r.
(Add register to accumulator)
[A] <-- [A] + [r].
2. ADD M.
(Add memory to accumulator)
[A] <-- [A] + [[H-L]].
3. ADC r.
(Add register with carry to accumulator).
[A] <-- [A] + [r] + [CS].
4. ADC M.
(Add memory with carry to accumulator)
[A] <-- [A] + [[H-L]] [CS].
Arithmetic Group
5. ADI data
(Add immediate data to accumulator)
[A] <-- [A] + data.
6. ACI data
(Add with carry immediate data to accumulator).
[A] <-- [A] + data + [CS].
7. DAD rp.
(Add register paid to H-L pair).
[H-L] <-- [H-L] + [rp].
8. SUB r.
(Subtract register from accumulator).
[A] <-- [A] – [r].
9. SUB M.
(Subtract memory from accumulator).
[A] <-- [A] – [[H-L]].
10. SBB r.
(Subtract register from accumulator with borrow).
[A] <-- [A] – [r] – [CS].
11. SBB M.
(Subtract memory from accumulator with borrow).
[A] <-- [A] – [[H-L]] – [CS].
12. SUI data.
(Subtract immediate data from accumulator)
[A] <-- [A] – data.
13. SBI data.
(Subtract immediate data from accumulator with borrow).
[A] <-- [A] – data – [CS].
14. INR r
(Increment register content)
[r] <-- [r] +1.
15. INR M.
(Increment memory content)
[[H-L]] <-- [[H-L]] + 1.
16. DCR r.
(Decrement register content).
[r] <-- [r] – 1.
17. DCR M.
(Decrement memory content)
[[H-L]] <-- [[H-L]] – 1.
18. INX rp.
(Increment register pair)
[rp] <-- [rp] – 1.
19. DCX rp
(Decrement register pair)
[rp] <-- [rp] -1.
20. DAA
(Decimal adjust accumulator).
 The instruction DAA is used in the program after ADD, ADI, ACI, ADC, etc.
instructions. After the execution of ADD, ADC, etc. instructions the result
is in hexadecimal and it is placed in the accumulator.
 The DAA instruction operates on this result and gives the final result in
the decimal system. It uses carry and auxiliary carry for decimal
adjustment. 6 is added to 4 LSBs of the content of the accumulator if
their value lies in between A and F or the AC flag is set to 1.
 Similarly, 6 is also added to 4 MSBs of the content of the accumulator if
their value lies in between A and F or the CS flag is set to 1. All status
flags are affected. When DAA is used data should be in decimal numbers.
1. ANA r.
(AND register with accumulator)
[A] <-- [A] ^ [r].
2. ANA M.
(AND memory with accumulator).
[A] <-- [A] ^ [[H-L]].
3. ANI data.
(AND immediate data with accumulator)
[A] <-- [A] ^ data.
4. ORA r.
(OR register with accumulator)
[A] <-- [A] v [r].
Logical Group
5. ORA M.
(OR memory with accumulator)
[A] <-- [A] v [[H-L]]
6. ORI data.
(OR immediate data with accumulator)
[A] <-- [A] v data.
7. XRA r.
(EXCLUSIVE – OR register with accumulator)
[A] <-- [A] v [r]
8. XRA M.
(EXCLUSIVE-OR memory with accumulator)
[A] <-- [A] v [[H-L]]
9. XRI data.
(EXCLUSIVE-OR immediate data with accumulator)
[A] <-- [A]
10. CMA.
(Complement the accumulator)
[A] <-- [A]
11. CMC.
(Complement the carry status)
[CS] <-- [CS]
12. STC.
(Set carry status)
[CS] <-- 1.
13. CMP r.
(Compare register with accumulator)
[A] – [r]
14. CMP M.
(Compare memory with accumulator)
[A] – [[H-L]]
15. CPI data.
(Compare immediate data with accumulator)
[A] – data.
• The 2nd byte of the instruction is data, and it is subtracted from the content of the accumulator. The status flags are set
according to the result of subtraction. But the result is discarded. The content of the accumulator remains unchanged.
16. RLC
(Rotate accumulator left)
[An+1] <-- [An], [A0] <-- [A7],[CS] <-- [A7].
• The content of the accumulator is rotated left by one bit. The seventh bit of the accumulator is moved to carry bit as well as to the
zero bit of the accumulator. Only CS flag is affected.
17. RRC.
(Rotate accumulator right)
[A7] <-- [A0], [CS] <-- [A0], [An] <-- [An+1].
• The content of the accumulator is rotated right by one bit. The zero bit of the accumulator is moved to the seventh
bit as well as to carry bit. Only CS flag is affected.
18. RAL.
(Rotate accumulator left through carry)
[An+1] <-- [An], [CS] <-- [A7], [A0] <-- [CS].
19. RAR.
(Rotate accumulator right through carry)
[An] <-- [An+1], [CS] <-- [A0], [A7] <-- [CS]
1. JMP addr (label).
(Unconditional jump: jump to the instruction specified by the address).
[PC] <-- Label.
2. Conditional Jump addr (label):
• After the execution of the conditional jump instruction the program jumps to the instruction specified
by the address (label) if the specified condition is fulfilled.
• The program proceeds further in the normal sequence if the specified condition is not fulfilled.
• If the condition is true and program jumps to the specified label, the execution of a conditional jump
takes 3 machine cycles: 10 states.
• If condition is not true, only 2 machine cycles; 7 states are required for the execution of the instruction.
Branch Group
2. Conditional Jump addr (label):
1) JZ addr (label).
(Jump if the result is zero)
2) JNZ addr (label)
(Jump if the result is not zero)
3) JC addr (label).
(Jump if there is a carry)
4) JNC addr (label).
(Jump if there is no carry)
5) JP addr (label).
(Jump if the result is plus)
6) JM addr (label).
(Jump if the result is minus)
7) JPE addr (label)
(Jump if even parity)
8) JPO addr (label)
(Jump if odd parity)
3. CALL addr (label)
(Unconditional CALL: call the subroutine identified by the operand)
• CALL instruction is used to call a subroutine. Before the control is transferred to the subroutine, the
address of the next instruction of the main program is saved in the stack. The content of the stack pointer
is decremented by two to indicate the new stack top. Then the program jumps to subroutine starting at
address specified by the label.
4. RET
(Return from subroutine)
5. RST n
(Restart)
• Restart is a one-word CALL instruction. The content of the program counter is saved in the stack. The
program jumps to the instruction starting at restart location.
1. IN port-address.
(Input to accumulator from I/O port)
[A] <-- [Port]
2. OUT port-address
(Output from accumulator to I/O port)
[Port] <-- [A]
3. PUSH rp
(Push the content of register pair to stack)
4. PUSH PSW
(PUSH Processor Status Word)
5. POP rp
(Pop the content of register pair, which was saved, from the stack)
Stack, I/O and Machine Control Group
6. POP PSW
(Pop Processor Status Word)
7. HLT
(Halt)
8. XTHL
(Exchange stack-top with H-L)
9. SPHL
(Move the contents of H-L pair to stack pointer)
10. EI
(Enable Interrupts)
11. DI
(Disable Interrupts)
12. SIM
(Set Interrupt Masks)
13. RIM
(Read Interrupt Masks)
14. NOP
(No Operation)

More Related Content

What's hot

8085 microproceesor ppt
8085 microproceesor ppt8085 microproceesor ppt
8085 microproceesor pptRJ Aniket
 
8085 MICROPROCESSOR ARCHITECTURE AND ITS OPERATIONS
8085 MICROPROCESSOR ARCHITECTURE AND ITS OPERATIONS8085 MICROPROCESSOR ARCHITECTURE AND ITS OPERATIONS
8085 MICROPROCESSOR ARCHITECTURE AND ITS OPERATIONSRamaPrabha24
 
Addressing modes of 8086
Addressing modes of 8086Addressing modes of 8086
Addressing modes of 8086saurav kumar
 
Architecture of 8086 Microprocessor
Architecture of 8086 Microprocessor  Architecture of 8086 Microprocessor
Architecture of 8086 Microprocessor Mustapha Fatty
 
Instruction set of 8086
Instruction set of 8086Instruction set of 8086
Instruction set of 80869840596838
 
8257 DMA Controller
8257 DMA Controller8257 DMA Controller
8257 DMA ControllerShivamSood22
 
8085 interfacing with memory chips
8085 interfacing with memory chips8085 interfacing with memory chips
8085 interfacing with memory chipsSrikrishna Thota
 
Computer organization memory
Computer organization memoryComputer organization memory
Computer organization memoryDeepak John
 
Microprocessor 8085 complete
Microprocessor 8085 completeMicroprocessor 8085 complete
Microprocessor 8085 completeShubham Singh
 
8085 microprocessor ramesh gaonkar
8085 microprocessor   ramesh gaonkar8085 microprocessor   ramesh gaonkar
8085 microprocessor ramesh gaonkarSAQUIB AHMAD
 
Architecture of 8051
Architecture of 8051Architecture of 8051
Architecture of 8051hello_priti
 
Memory organization in computer architecture
Memory organization in computer architectureMemory organization in computer architecture
Memory organization in computer architectureFaisal Hussain
 

What's hot (20)

8085 microproceesor ppt
8085 microproceesor ppt8085 microproceesor ppt
8085 microproceesor ppt
 
8085 MICROPROCESSOR ARCHITECTURE AND ITS OPERATIONS
8085 MICROPROCESSOR ARCHITECTURE AND ITS OPERATIONS8085 MICROPROCESSOR ARCHITECTURE AND ITS OPERATIONS
8085 MICROPROCESSOR ARCHITECTURE AND ITS OPERATIONS
 
Stack
StackStack
Stack
 
Direct access memory
Direct access memoryDirect access memory
Direct access memory
 
Addressing modes of 8086
Addressing modes of 8086Addressing modes of 8086
Addressing modes of 8086
 
Architecture of 8086 Microprocessor
Architecture of 8086 Microprocessor  Architecture of 8086 Microprocessor
Architecture of 8086 Microprocessor
 
Pin diagram 8085
Pin diagram 8085 Pin diagram 8085
Pin diagram 8085
 
Instruction set of 8086
Instruction set of 8086Instruction set of 8086
Instruction set of 8086
 
8257 DMA Controller
8257 DMA Controller8257 DMA Controller
8257 DMA Controller
 
8085 interfacing with memory chips
8085 interfacing with memory chips8085 interfacing with memory chips
8085 interfacing with memory chips
 
8086 micro processor
8086 micro processor8086 micro processor
8086 micro processor
 
Arithmetic and logical instructions
Arithmetic and logical instructionsArithmetic and logical instructions
Arithmetic and logical instructions
 
Computer organization memory
Computer organization memoryComputer organization memory
Computer organization memory
 
Subroutine
SubroutineSubroutine
Subroutine
 
Microprocessor 8085 complete
Microprocessor 8085 completeMicroprocessor 8085 complete
Microprocessor 8085 complete
 
8085 microprocessor ramesh gaonkar
8085 microprocessor   ramesh gaonkar8085 microprocessor   ramesh gaonkar
8085 microprocessor ramesh gaonkar
 
Architecture of 8051
Architecture of 8051Architecture of 8051
Architecture of 8051
 
Interrupts and types of interrupts
Interrupts and types of interruptsInterrupts and types of interrupts
Interrupts and types of interrupts
 
Memory organization in computer architecture
Memory organization in computer architectureMemory organization in computer architecture
Memory organization in computer architecture
 
Memory Organization
Memory OrganizationMemory Organization
Memory Organization
 

Similar to Instruction set of 8085

Instruction set of 8085 microprocessor
Instruction set of 8085 microprocessorInstruction set of 8085 microprocessor
Instruction set of 8085 microprocessorRahul Sahu
 
Instruction set 8085
Instruction set 8085Instruction set 8085
Instruction set 8085varun sukheja
 
Ch8_CENTRAL PROCESSING UNIT Registers ALU
Ch8_CENTRAL PROCESSING UNIT Registers ALUCh8_CENTRAL PROCESSING UNIT Registers ALU
Ch8_CENTRAL PROCESSING UNIT Registers ALURNShukla7
 
5. 8085 instruction set ii
5. 8085 instruction set ii5. 8085 instruction set ii
5. 8085 instruction set iisandip das
 
5th unit Microprocessor 8085
5th unit Microprocessor 80855th unit Microprocessor 8085
5th unit Microprocessor 8085Mani Afranzio
 
Computer Organisation and Architecture
Computer Organisation and ArchitectureComputer Organisation and Architecture
Computer Organisation and ArchitectureSubhasis Dash
 
Computer Organization and 8085 microprocessor notes
Computer Organization and 8085 microprocessor notesComputer Organization and 8085 microprocessor notes
Computer Organization and 8085 microprocessor notesLakshmi Sarvani Videla
 
20ME702– MECHATRONICS -UNIT-2.pptx
20ME702– MECHATRONICS -UNIT-2.pptx20ME702– MECHATRONICS -UNIT-2.pptx
20ME702– MECHATRONICS -UNIT-2.pptxMohanumar S
 
UNIT II –8085 MICROPROCESSOR AND 8051 MICROCONTROLLER---ME6702– MECHATRONICS
UNIT II –8085 MICROPROCESSOR AND 8051 MICROCONTROLLER---ME6702– MECHATRONICS UNIT II –8085 MICROPROCESSOR AND 8051 MICROCONTROLLER---ME6702– MECHATRONICS
UNIT II –8085 MICROPROCESSOR AND 8051 MICROCONTROLLER---ME6702– MECHATRONICS Mohanumar S
 
8085 MICROPROCESSOR.pptx
8085 MICROPROCESSOR.pptx8085 MICROPROCESSOR.pptx
8085 MICROPROCESSOR.pptxkarthik R
 
Discussion on 8080 Microprocessor_r1 - Everyting you need to know.pptx
Discussion on 8080 Microprocessor_r1 - Everyting you need to know.pptxDiscussion on 8080 Microprocessor_r1 - Everyting you need to know.pptx
Discussion on 8080 Microprocessor_r1 - Everyting you need to know.pptxpjmulat
 
8085_Microprocessor(simar).ppt
8085_Microprocessor(simar).ppt8085_Microprocessor(simar).ppt
8085_Microprocessor(simar).pptKanikaJindal9
 
Instruction set of 8086
Instruction set of 8086Instruction set of 8086
Instruction set of 8086Vijay Kumar
 
Instructionsetof8086 180224060745(3)
Instructionsetof8086 180224060745(3)Instructionsetof8086 180224060745(3)
Instructionsetof8086 180224060745(3)AmitPaliwal20
 
MICROPROCESSORS AND MICROCONTROLLERS
MICROPROCESSORS AND MICROCONTROLLERSMICROPROCESSORS AND MICROCONTROLLERS
MICROPROCESSORS AND MICROCONTROLLERSselvakumar948
 
UNIT II MICROPROCESSOR AND MICROCONTROLLER
UNIT II MICROPROCESSOR AND MICROCONTROLLER UNIT II MICROPROCESSOR AND MICROCONTROLLER
UNIT II MICROPROCESSOR AND MICROCONTROLLER ravis205084
 

Similar to Instruction set of 8085 (20)

Instruction set of 8085 microprocessor
Instruction set of 8085 microprocessorInstruction set of 8085 microprocessor
Instruction set of 8085 microprocessor
 
Instruction set 8085
Instruction set 8085Instruction set 8085
Instruction set 8085
 
UNIT-3.pptx
UNIT-3.pptxUNIT-3.pptx
UNIT-3.pptx
 
Ch8_CENTRAL PROCESSING UNIT Registers ALU
Ch8_CENTRAL PROCESSING UNIT Registers ALUCh8_CENTRAL PROCESSING UNIT Registers ALU
Ch8_CENTRAL PROCESSING UNIT Registers ALU
 
5. 8085 instruction set ii
5. 8085 instruction set ii5. 8085 instruction set ii
5. 8085 instruction set ii
 
5th unit Microprocessor 8085
5th unit Microprocessor 80855th unit Microprocessor 8085
5th unit Microprocessor 8085
 
Computer Organisation and Architecture
Computer Organisation and ArchitectureComputer Organisation and Architecture
Computer Organisation and Architecture
 
Computer Organization and 8085 microprocessor notes
Computer Organization and 8085 microprocessor notesComputer Organization and 8085 microprocessor notes
Computer Organization and 8085 microprocessor notes
 
20ME702– MECHATRONICS -UNIT-2.pptx
20ME702– MECHATRONICS -UNIT-2.pptx20ME702– MECHATRONICS -UNIT-2.pptx
20ME702– MECHATRONICS -UNIT-2.pptx
 
UNIT II –8085 MICROPROCESSOR AND 8051 MICROCONTROLLER---ME6702– MECHATRONICS
UNIT II –8085 MICROPROCESSOR AND 8051 MICROCONTROLLER---ME6702– MECHATRONICS UNIT II –8085 MICROPROCESSOR AND 8051 MICROCONTROLLER---ME6702– MECHATRONICS
UNIT II –8085 MICROPROCESSOR AND 8051 MICROCONTROLLER---ME6702– MECHATRONICS
 
8085 MICROPROCESSOR.pptx
8085 MICROPROCESSOR.pptx8085 MICROPROCESSOR.pptx
8085 MICROPROCESSOR.pptx
 
Discussion on 8080 Microprocessor_r1 - Everyting you need to know.pptx
Discussion on 8080 Microprocessor_r1 - Everyting you need to know.pptxDiscussion on 8080 Microprocessor_r1 - Everyting you need to know.pptx
Discussion on 8080 Microprocessor_r1 - Everyting you need to know.pptx
 
8085_Microprocessor(simar).ppt
8085_Microprocessor(simar).ppt8085_Microprocessor(simar).ppt
8085_Microprocessor(simar).ppt
 
Abap Questions
Abap QuestionsAbap Questions
Abap Questions
 
Abap
AbapAbap
Abap
 
Instruction set of 8086
Instruction set of 8086Instruction set of 8086
Instruction set of 8086
 
Instructionsetof8086 180224060745(3)
Instructionsetof8086 180224060745(3)Instructionsetof8086 180224060745(3)
Instructionsetof8086 180224060745(3)
 
MICROPROCESSORS AND MICROCONTROLLERS
MICROPROCESSORS AND MICROCONTROLLERSMICROPROCESSORS AND MICROCONTROLLERS
MICROPROCESSORS AND MICROCONTROLLERS
 
UNIT II MICROPROCESSOR AND MICROCONTROLLER
UNIT II MICROPROCESSOR AND MICROCONTROLLER UNIT II MICROPROCESSOR AND MICROCONTROLLER
UNIT II MICROPROCESSOR AND MICROCONTROLLER
 
8085 instruction-set part 1
8085 instruction-set part 18085 instruction-set part 1
8085 instruction-set part 1
 

More from Sri Manakula Vinayagar Engineering College

Performance Analysis of MIMO–OFDM for PCHBF , RELAY Technique with MMSE For T...
Performance Analysis of MIMO–OFDM for PCHBF , RELAY Technique with MMSE For T...Performance Analysis of MIMO–OFDM for PCHBF , RELAY Technique with MMSE For T...
Performance Analysis of MIMO–OFDM for PCHBF , RELAY Technique with MMSE For T...Sri Manakula Vinayagar Engineering College
 

More from Sri Manakula Vinayagar Engineering College (20)

IoT Methodology.pptx
IoT Methodology.pptxIoT Methodology.pptx
IoT Methodology.pptx
 
ACNS UNIT-5.pdf
ACNS UNIT-5.pdfACNS UNIT-5.pdf
ACNS UNIT-5.pdf
 
2. ACNS UNIT-1.pptx
2. ACNS UNIT-1.pptx2. ACNS UNIT-1.pptx
2. ACNS UNIT-1.pptx
 
1. ACNS UNIT-1.pptx
1. ACNS UNIT-1.pptx1. ACNS UNIT-1.pptx
1. ACNS UNIT-1.pptx
 
7. Multi-operator D2D communication.pptx
7. Multi-operator D2D communication.pptx7. Multi-operator D2D communication.pptx
7. Multi-operator D2D communication.pptx
 
11. New challenges in the 5G modelling.pptx
11. New challenges in the 5G modelling.pptx11. New challenges in the 5G modelling.pptx
11. New challenges in the 5G modelling.pptx
 
8. Simulation methodology.pptx
8. Simulation methodology.pptx8. Simulation methodology.pptx
8. Simulation methodology.pptx
 
10. Calibration.pptx
10. Calibration.pptx10. Calibration.pptx
10. Calibration.pptx
 
9. Evaluation methodology.pptx
9. Evaluation methodology.pptx9. Evaluation methodology.pptx
9. Evaluation methodology.pptx
 
4. Ultra Reliable and Low Latency Communications.pptx
4. Ultra Reliable and Low Latency Communications.pptx4. Ultra Reliable and Low Latency Communications.pptx
4. Ultra Reliable and Low Latency Communications.pptx
 
1. Massive Machine-Type Communication.pptx
1. Massive Machine-Type Communication.pptx1. Massive Machine-Type Communication.pptx
1. Massive Machine-Type Communication.pptx
 
1. Coordinated Multi-Point Transmission in 5G.pptx
1. Coordinated Multi-Point Transmission in 5G.pptx1. Coordinated Multi-Point Transmission in 5G.pptx
1. Coordinated Multi-Point Transmission in 5G.pptx
 
Real time operating systems
Real time operating systemsReal time operating systems
Real time operating systems
 
Reliability and clock synchronization
Reliability and clock synchronizationReliability and clock synchronization
Reliability and clock synchronization
 
Low power embedded system design
Low power embedded system designLow power embedded system design
Low power embedded system design
 
Performance Analysis of MIMO–OFDM for PCHBF , RELAY Technique with MMSE For T...
Performance Analysis of MIMO–OFDM for PCHBF , RELAY Technique with MMSE For T...Performance Analysis of MIMO–OFDM for PCHBF , RELAY Technique with MMSE For T...
Performance Analysis of MIMO–OFDM for PCHBF , RELAY Technique with MMSE For T...
 
Telecommunication systems
Telecommunication systemsTelecommunication systems
Telecommunication systems
 
Home appliances
Home appliancesHome appliances
Home appliances
 
loudspeakers and microphones
loudspeakers and microphonesloudspeakers and microphones
loudspeakers and microphones
 
Television standards and systems
Television standards and systemsTelevision standards and systems
Television standards and systems
 

Recently uploaded

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
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxwendy cai
 
Introduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptxIntroduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptxvipinkmenon1
 
HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2RajaP95
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxJoão Esperancinha
 
Heart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxHeart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxPoojaBan
 
Concrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptxConcrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptxKartikeyaDwivedi3
 
Electronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfElectronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfme23b1001
 
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfCCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfAsst.prof M.Gokilavani
 
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
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile servicerehmti665
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSKurinjimalarL3
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...Soham Mondal
 
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
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineeringmalavadedarshan25
 
Artificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxArtificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxbritheesh05
 
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
 

Recently uploaded (20)

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
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptx
 
Introduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptxIntroduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptx
 
HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
 
🔝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...
 
Heart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxHeart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptx
 
Concrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptxConcrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptx
 
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
 
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
 
Electronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfElectronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdf
 
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfCCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
 
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...
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile service
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
 
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
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineering
 
Artificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxArtificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptx
 
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
 

Instruction set of 8085

  • 1. Instruction Set of Intel 8085
  • 2. Instruction Set of Intel 8085 • An Instruction is a command given to the computer to perform a specified operation on given data. The instruction set of a microprocessor is the collection of the instructions that the microprocessor is designed to execute. The instructions described here are of Intel 8085. • These instructions are of Intel Corporation. They cannot be used by other microprocessor manufactures. The programmer can write a program in assembly language using these instructions. • These Instructions have been classified into the following groups: S. no Description No. of instruction types 1 Data Transfer Group 13 2 Arithmetic Group 20 3 Logical Group 19 4 Branch Control Group 5 5 I/O and Machine Control Group 14
  • 3. 1. Data Transfer Group • Instructions, which are used to transfer data from one register to another register, from memory to register or register to memory, come under this group. • Examples are: MOV, MVI, LXI, LDA, STA etc. When an instruction of data transfer group is executed, data is transferred from the source to the destination without altering the contents of the source. • For example, when MOV A, B is executed the content of the register B is copied into the register A, and the content of register B remains unaltered. Similarly, when LDA 2500 is executed the content of the memory location 2500 is loaded into the accumulator. But the content of the memory location 2500 remains unaltered. 2. Arithmetic Group • The instructions of this group perform arithmetic operations such as addition, subtraction; increment or decrement of the content of a register or memory. • Examples are: ADD, SUB, INR, DAD etc.
  • 4. 3. Logical Group • The Instructions under this group perform logical operation such as AND, OR, compare, rotate etc. • Examples are: ANA, XRA, ORA, CMP, and RAL etc. 4. Branch Control Group • This group includes the instructions for conditional and unconditional jump, subroutine call and return, and restart. Examples are: JMP, JC, JZ, CALL, CZ, RST etc. 5. I/O and Machine Control Group • This group includes the instructions for input/output ports, stack and machine control. Examples are: IN, OUT, PUSH, POP, and HLT etc.
  • 5. 1. MOV r1, r2 (Move Data; Move the content of the one register to another). [r1] <-- [r2] 2. MOV r, m (Move the content of memory register). r <-- [M] 3. MOV M, r. (Move the content of register to memory). M <-- [r] 4. MVI r, data. (Move immediate data to register). [r] <-- data. Data Transfer Group
  • 6. 5. MVI M, data. (Move immediate data to memory). M <-- data. 6. LXI rp, data 16. (Load register pair immediate). [rp] <-- data 16 bits, [rh] <-- 8 LSBs of data. 7. LDA addr. (Load Accumulator direct). [A] <-- [addr]. 8. STA addr. (Store accumulator direct). [addr] <-- [A]. 9. LHLD addr. (Load H-L pair direct). [L] <-- [addr], [H] <-- [addr+1].
  • 7. 10. SHLD addr. (Store H-L pair direct) [addr] <-- [L], [addr+1] <-- [H]. 11. LDAX rp. (LOAD accumulator indirect) [A] <-- [[rp]] 12. STAX rp. (Store accumulator indirect) [[rp]] <-- [A]. 13. XCHG. (Exchange the contents of H-L with D-E pair) [H-L] <--> [D-E].
  • 8. 1. ADD r. (Add register to accumulator) [A] <-- [A] + [r]. 2. ADD M. (Add memory to accumulator) [A] <-- [A] + [[H-L]]. 3. ADC r. (Add register with carry to accumulator). [A] <-- [A] + [r] + [CS]. 4. ADC M. (Add memory with carry to accumulator) [A] <-- [A] + [[H-L]] [CS]. Arithmetic Group
  • 9. 5. ADI data (Add immediate data to accumulator) [A] <-- [A] + data. 6. ACI data (Add with carry immediate data to accumulator). [A] <-- [A] + data + [CS]. 7. DAD rp. (Add register paid to H-L pair). [H-L] <-- [H-L] + [rp]. 8. SUB r. (Subtract register from accumulator). [A] <-- [A] – [r].
  • 10. 9. SUB M. (Subtract memory from accumulator). [A] <-- [A] – [[H-L]]. 10. SBB r. (Subtract register from accumulator with borrow). [A] <-- [A] – [r] – [CS]. 11. SBB M. (Subtract memory from accumulator with borrow). [A] <-- [A] – [[H-L]] – [CS]. 12. SUI data. (Subtract immediate data from accumulator) [A] <-- [A] – data.
  • 11. 13. SBI data. (Subtract immediate data from accumulator with borrow). [A] <-- [A] – data – [CS]. 14. INR r (Increment register content) [r] <-- [r] +1. 15. INR M. (Increment memory content) [[H-L]] <-- [[H-L]] + 1. 16. DCR r. (Decrement register content). [r] <-- [r] – 1.
  • 12. 17. DCR M. (Decrement memory content) [[H-L]] <-- [[H-L]] – 1. 18. INX rp. (Increment register pair) [rp] <-- [rp] – 1. 19. DCX rp (Decrement register pair) [rp] <-- [rp] -1. 20. DAA (Decimal adjust accumulator).
  • 13.  The instruction DAA is used in the program after ADD, ADI, ACI, ADC, etc. instructions. After the execution of ADD, ADC, etc. instructions the result is in hexadecimal and it is placed in the accumulator.  The DAA instruction operates on this result and gives the final result in the decimal system. It uses carry and auxiliary carry for decimal adjustment. 6 is added to 4 LSBs of the content of the accumulator if their value lies in between A and F or the AC flag is set to 1.  Similarly, 6 is also added to 4 MSBs of the content of the accumulator if their value lies in between A and F or the CS flag is set to 1. All status flags are affected. When DAA is used data should be in decimal numbers.
  • 14. 1. ANA r. (AND register with accumulator) [A] <-- [A] ^ [r]. 2. ANA M. (AND memory with accumulator). [A] <-- [A] ^ [[H-L]]. 3. ANI data. (AND immediate data with accumulator) [A] <-- [A] ^ data. 4. ORA r. (OR register with accumulator) [A] <-- [A] v [r]. Logical Group
  • 15. 5. ORA M. (OR memory with accumulator) [A] <-- [A] v [[H-L]] 6. ORI data. (OR immediate data with accumulator) [A] <-- [A] v data. 7. XRA r. (EXCLUSIVE – OR register with accumulator) [A] <-- [A] v [r] 8. XRA M. (EXCLUSIVE-OR memory with accumulator) [A] <-- [A] v [[H-L]]
  • 16. 9. XRI data. (EXCLUSIVE-OR immediate data with accumulator) [A] <-- [A] 10. CMA. (Complement the accumulator) [A] <-- [A] 11. CMC. (Complement the carry status) [CS] <-- [CS] 12. STC. (Set carry status) [CS] <-- 1.
  • 17. 13. CMP r. (Compare register with accumulator) [A] – [r] 14. CMP M. (Compare memory with accumulator) [A] – [[H-L]] 15. CPI data. (Compare immediate data with accumulator) [A] – data. • The 2nd byte of the instruction is data, and it is subtracted from the content of the accumulator. The status flags are set according to the result of subtraction. But the result is discarded. The content of the accumulator remains unchanged. 16. RLC (Rotate accumulator left) [An+1] <-- [An], [A0] <-- [A7],[CS] <-- [A7]. • The content of the accumulator is rotated left by one bit. The seventh bit of the accumulator is moved to carry bit as well as to the zero bit of the accumulator. Only CS flag is affected.
  • 18. 17. RRC. (Rotate accumulator right) [A7] <-- [A0], [CS] <-- [A0], [An] <-- [An+1]. • The content of the accumulator is rotated right by one bit. The zero bit of the accumulator is moved to the seventh bit as well as to carry bit. Only CS flag is affected. 18. RAL. (Rotate accumulator left through carry) [An+1] <-- [An], [CS] <-- [A7], [A0] <-- [CS]. 19. RAR. (Rotate accumulator right through carry) [An] <-- [An+1], [CS] <-- [A0], [A7] <-- [CS]
  • 19. 1. JMP addr (label). (Unconditional jump: jump to the instruction specified by the address). [PC] <-- Label. 2. Conditional Jump addr (label): • After the execution of the conditional jump instruction the program jumps to the instruction specified by the address (label) if the specified condition is fulfilled. • The program proceeds further in the normal sequence if the specified condition is not fulfilled. • If the condition is true and program jumps to the specified label, the execution of a conditional jump takes 3 machine cycles: 10 states. • If condition is not true, only 2 machine cycles; 7 states are required for the execution of the instruction. Branch Group
  • 20. 2. Conditional Jump addr (label): 1) JZ addr (label). (Jump if the result is zero) 2) JNZ addr (label) (Jump if the result is not zero) 3) JC addr (label). (Jump if there is a carry) 4) JNC addr (label). (Jump if there is no carry) 5) JP addr (label). (Jump if the result is plus) 6) JM addr (label). (Jump if the result is minus) 7) JPE addr (label) (Jump if even parity) 8) JPO addr (label) (Jump if odd parity)
  • 21. 3. CALL addr (label) (Unconditional CALL: call the subroutine identified by the operand) • CALL instruction is used to call a subroutine. Before the control is transferred to the subroutine, the address of the next instruction of the main program is saved in the stack. The content of the stack pointer is decremented by two to indicate the new stack top. Then the program jumps to subroutine starting at address specified by the label. 4. RET (Return from subroutine) 5. RST n (Restart) • Restart is a one-word CALL instruction. The content of the program counter is saved in the stack. The program jumps to the instruction starting at restart location.
  • 22. 1. IN port-address. (Input to accumulator from I/O port) [A] <-- [Port] 2. OUT port-address (Output from accumulator to I/O port) [Port] <-- [A] 3. PUSH rp (Push the content of register pair to stack) 4. PUSH PSW (PUSH Processor Status Word) 5. POP rp (Pop the content of register pair, which was saved, from the stack) Stack, I/O and Machine Control Group
  • 23. 6. POP PSW (Pop Processor Status Word) 7. HLT (Halt) 8. XTHL (Exchange stack-top with H-L) 9. SPHL (Move the contents of H-L pair to stack pointer) 10. EI (Enable Interrupts)
  • 24. 11. DI (Disable Interrupts) 12. SIM (Set Interrupt Masks) 13. RIM (Read Interrupt Masks) 14. NOP (No Operation)