Some memory to memory MOVE instriuctions.
Instruction |
Description |
MVC |
Copy up to 256 bytes from one memory location to another. |
MVCL |
Copy more than 256 bytes from one memory location to another. |
MVI |
Insert a single byte into a memory location. |
MVST |
Copy a delineated string from one memory location to another. |
PACK |
Typically used to Convert a Zoned Decimal number at one memory location into a Packed Decimal number at another. |
UNPK |
Used to unpack data at one memory location into another. The data does not have to be numeric. |
  |
  |
CVB |
Convert a Packed Decimal number at a memory location and place the result in a Register. |
CVD |
Convert a Binary number in a Register to a Packed Decimal number and put the result at a memory location. |
There are many other instructions for moving data from memory to a Register (LOAD operations) and for moving data
from a Register to Memory (STORE operations).


