0
What is the function of MOV in assembly language ?
2 Respuestas
+ 2
MOV instruction copies data.
Syntax: MOV destination,Source
This copies data from source to destination.for example
MOV ax,bx copies data from bx to ax register.
0
Got it ! Tnx .