answersLogoWhite

0

mov si,1300;source

mov di.1500;destination

mov ch,05;limit

lo:

mov al.[si]

mov [di],al

inc si

inc di

dec ch

jnz lo

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

Block diagram mti radar and its working?

In an MTI (Moving Target Indication) radar system, the block diagram consists of a transmit/receive antenna, a duplexer to switch between sending and receiving modes, a radar signal processor to detect moving targets, and a display unit for visualization. The radar sends out a series of pulses and examines the return signal to detect targets with a non-zero Doppler shift, indicating movement. The radar signal processor filters out stationary clutter and focuses on moving targets, displaying their position and velocity on the radar screen.


What actors and actresses appeared in Writing Block - 2011?

The cast of Writing Block - 2011 includes: Steve Merry as Writer


Explain the inter connection between processor and memory with the help of block diagram?

Don't!


Can you block the Internet?

You need a program called WFilter Enterprise to block the internet.


How do you block people from writing on your WikiAnswers message board?

Currently, you cannot block certain individuals from writing on your message board. You can block all Non-Supervisors from writing on your message board by emailing WikiAnswers @ Answers.com(remove spaces) and asking for them to do so. Please note that this will not block Supervisors or Community Assistants.


What is a exampl of a glacier moving a boulder?

An erratic block.


Do you have writer's block if you have a hard time writing stuff?

It doesn't necessarily mean you have writer's block. To help you get back on track with your writing I suggest looking at the following link.


What is the difference between transistor and processor?

Transistor is an tiny electronic device called electronic switch,which is building block of a processor. Processor is a data processing device consists of thousands or millions of transistors. Eg- Intel 8086 microprocessor has around 29000 transistors.


What is the definition of a soft block?

A soft error normally occurs when you install a program that is not fully compatible with your current operating system. A soft block, allows you to ignore the warning and use the program at your own risk VS a hard block, which displays a warning and doesn't allow you to use the program.


What is block writing styles?

Block style is keying for a letter or memo in which all the text is aligned at the left margin.


What type of information should be specified in the block comment at the very beginning of the program?

What type of information should be specific in the block comment at the very beginning of a program? Provide a list of information.


Write a program to store block of data in reverse order in a memory block using 8085 microprocessor?

A possible program to reverse a block of memory using the 8085... PUSH F SAVE PROCESSOR STATE - OPTIONAL PUSH B PUSH D PUSH H LXI H,{address of block} MOV D,H SAVE BLOCK ADDRESS MOV E,H MVI A,{size of block} MOV C,A SAVE BLOCK SIZE LOOP1: MOV A,M GET DATA BYTE PUSH F PUSH ON STACK DCR C DECREMENT LOOP COUNT XRA A TEST FOR END OF LOOP CMP C JNZ LOOP1 MOV H,D RESTORE BLOCK ADDRESS MOV L,E MOVE C,B RESTORE BLOCK SIZE LOOP2: POP F POP FROM STACK MOV M,A PUT DATA BYTE DCR C DECREMENT LOOP COUNT XRA A TEST FOR END OF LOOP CMP C JNZ LOOP2 POP H RESTORE PROCESSOR STATE - OPTIONAL POP D POP B POP F