answersLogoWhite

0


Best Answer

; program for moving a string from one block of memory

;to another block of memory

data segment

str1 db 'suriya',0

str2 db 20 dup(0)

data ends

code segment

assume cs:code,ds:data,es:data

start: mov ax,data

mov ds,ax

mov es,ax

mov cx,6

lea si,str1

lea di,str2

cld

rep movsb

int 3h

code ends

end start

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Write a program in 8086 assembly language that copies a string to another location in the memory?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Which program translate assembly language into machine language?

Assembly langue is translated into machine language by an assembler.


Could you write a assembly language program in tasm To check whether a given number present in a sequence of given memory location containing the string to be checked in 8086?

8086 assembly language program to check wether given number is perfect or not


A program for assembly language for traffic light control?

an assembly language program of traffic light


What is assembly program?

An assembly program is a machine-dependent program written in a low-level symbolic code known as assembly language.


Reserved word in assembly language program?

use of reserved word in assembly language


Example of Password program code in assembly language?

How to write the program un Assembly language to set a password for personal computers?


Assembly language program for string concatenation using 8086 microprocessor?

write program to concatenating two sting in 8086 assembly language


Write a program in 8086 assembly language to draw a circle?

You need an 8086 assembly language pencil.


What translation programs converts assembly language programs to object program?

The only translation program that converts assembly language to machine code is an assembler.


How do you write an assembly language program to find the sum of n numbers using array?

write an assembly language program to find sum of N numbers


What application will be used to convert an assembly language source program into machine language?

An Assembler converts assembly language instructions into machine language.


How is a calculator created with an assembly language program?

programaticly