0
1.3kviews
Write a program to transfer a block of data from 40H location to 50H location.
1 Answer
0
32views
       ORG       0000H;
       MOV R0,   #40H;
       MOV R1,   #50H;
       MOV R2,   #0AH;
UP:    MOV @ R1,  A;
       INC     R0;
       INC     R1;
       DJNZ    R2, UP

Create a free account to keep reading this post.

and 3 others joined a min ago.

Please log in to add an answer.