Command: MOV-Move
Arguments: DEST: general-purpose register, segment register or memory location; SRC: immediate value, general-purpose register, segment register or memory location
Usage: MOV DEST,SRC
Effects: DEST := SRC; Copies the source value (second argument) to the destination (first argument).
Flags to be set: none
Misc: Both arguments must be the same size (byte, word or doubleword). Move cannot be used to load the CS register, use JMP, CALL or RET instead.