answersLogoWhite

0

Program for block transfer in 8085?

Updated: 10/31/2022
User Avatar

Wiki User

14y ago

Best Answer

Block transfer in 8085...

PUSH FLAGS {optional, if registers need to be saved}

PUSH B

PUSH D

PUSH H

LXI H,COUNT

LXI B,SOURCE

LXI D,DESTINATION

LOOP LDAX B

STAX D

INX B

INX D

DCX H

MOV A,H

ORA L

JNZ LOOP

POP H {optional, if registers need to be saved}

POP D

POP B

POP FLAGS

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Program for block transfer in 8085?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Program for interfacing of relay with 8085?

we want relay interface with 8085 and also attech the program


Program to count the number of numbers in an array using 8085 microprocessor?

A program which is used to count the number of numbers in an array using a 8085 microprocessor is known as a assembly language program.


Prime numbers between 1 to 10 in microprocessor 8085?

program to find prime number in 8085 microprocessor


Program to convert hex to decimal in 8085?

jump,b


2x2 matrix multiplication program in 8085 processor?

how to write a program for matrix multiplication in microprocesspr


What is subroutine in 8085?

in 8085 microprocessor a subroutine is a separate program written aside from main program ,this program is basically the program which requires to be executed several times in the main program. the microprocessor can call subroutine any time using CALL instruction . after the subroutine is executed the subbroutine hands over the program to main program using RET instruction.


How do you write a program in 8085?

Either in Assembly or in some high level language/the hex-code (for the mnemonics) that the microprocessor 8085 generally understands.


How do you build 8085 using vhdl?

VHDL is a hardware description language. It describes the functionality of a hardware as a program. If we know the architecture of 8085, the same can be implemented or coded using VHDL.


Write a program to add two 8 bit numbers in microprocessor 8051?

write it in 8085


To find LCM of n numbers using 8085 programs?

sample program in sum of the series using the formula for s=n/2[2a+{n-1}d] in 8085


Can Mov used in 8085 for immediate data transfer?

No, not at all this instruction MOV can not be used for immediate data transfer. You will need to use command MVI Rd, 8 Bit Data for immediate data transfer.


How data transfer operation is done in 8085 micro processor?

Data transfer in the 8085 microprocessor can be done with the help of several instructions like the MOV,MVI,OUT and IN . Lets say, we want to move the contents of a register R1 to register R2, then we could use the instruction MOV R2,R1 ; and so on...