MOVX A, @Ri MOVX @Ri, A
They are Read/Write instructions of external RAM.
19
3.2.2 Data transfer instructions
3. Data Transfer of Program Memory
MOVC A, @A+DPTR MOVC A, @A+PC
Source operand: A, Rn, Direct address, Indirect address register, #data, #data16
Destination operand: A, Rn, Direct address, Indirect address register
15
3.2.1 The symbol meaning of Instruction format
See P45
14
Return
3.2 Instruction Introduction
3.2.2 Data transfer instructions (29 items)
• General format: MOV <Destination operand>, <Source operand>
MOV direct2, direct1 MOV direct, Rn MOV Rn, direct MOV @Ri, direct MOV direct, @Ri
MOV 50H,30H MOV 32H, R1 MOV R0, 33H MOV @R1, 0D0H MOV 0D0H, @R1
17
3.2.2 Data transfer instructions