MOV Instruction

MOV Instruction
MOV destination, source ; copy source to dest.
MOV A,#55H MOV R0,A ;load value 55H into reg. A ;copy contents of A into R0 ;(now A=R0=55H) MOV R1,A ;copy contents of A into R1 ;(now A=R0=R1=55H) MOV R2,A ;copy contents of A into R2