StephenHermer.com
Writing, Iguanas, and Electronics

MOV Reg, Reg Instruction

The Register to Register MOV includes all registers and counters. Any combination where the source and destination are different are acceptable. This allows the programmer to update the program counter, a general purpose register, even the stack pointer with no restrictions.

Register to Register Copy

 

Usage Examples:
        Hex                Mnemonic                      Action

201A      ; MOV PC, A        PC copied to A
20AB      ; MOV A, B         A copied to B
2052      ; MOV X, SP        X copied to SP

Updates when Executed:

  • Destination register or counter