Command: MOVS - Move Data from String to String
Arguments: DEST, SRC: both memory operands of the same size with address-size-attribute
Usage: MOVS DEST, SRC
Effects: Copies the byte/word/doubleword (depending of the size of the parameters) at [DS:SI] or [DS:ESI] to [ES:DI] or [ES:EDI]. It then increments or decrements (depending on the direction flag: increments if the flag is clear, decrements if it is set) SI and DI (or ESI and EDI).
Flags to be set: none