8086 program write an ALP to move block of data bytes from one location to another location.

Code :-

org 100h

MOV SI,2000H

MOV DI,2010H

MOV CX,05H

L1:

    MOV AX,[SI]

    INC SI

    MOV [DI],AX

    INC DI

LOOP L1

ret

Output :-



Comments

Popular Posts

What is Tinkercad ? How to use Tinkercad ?

Connect switch to Arduino. If switch is on than print ”ON” else print “OFF” on serial monitor.

Set the time using four switch and display the clock on LCD using arduino ** SW1 : when press, increment 1 digit ** SW2 : when press, decrement 1 digit ** SW3 : when press, display set time and start the clock ** SW4 : when press, reset the clock