![]() |
Comments:
|
|
|
|
|
|
Graphically:
|
|
|
|
MOVE.B Src, Dest // Copy the byte operand from Src to Dest MOVE.W Src, Dest // Copy the short (or word) operand from Src to Dest MOVE.L Src, Dest // Copy the int (or long word) operand from Src to Dest |
Notice that:
|
MOVE.B Src, MemAddr // Copy the byte operand from Src to memory location MemAddr MOVE.W Src, MemAddr // Copy the short (or word) operand from Src to memory location MemAddr MOVE.L Src, MemAddr // Copy the int (or long word) operand from Src to memory location MemAddr |
|
|
|
How to run the program:
|
![]() |
|
|
Moral of the quiz:
|
How to run the program:
|
|
|
|
|