Operation: | MOVC |
Function: | Move Code Byte to Accumulator |
Syntax: | MOVC A,@A+register |
Instructions | OpCode | Bytes | Cycles | Flags |
MOVC A,@A+DPTR | 0x93 | 1 | 2 | None |
MOVC A,@A+PC | 0x83 | 1 | 1 | None |
Description: MOVC moves a byte from Code Memory into the Accumulator. The Code Memory address from which the byte will be moved is calculated by summing the value of the Accumulator with either DPTR or the Program Counter (PC). In the case of the Program Counter, PC is first incremented by 1 before being summed with the Accumulator.
See Also: MOV, MOVX, Instruction Set