Looking at the following assembly code:
MOV ESI, DWORD PTR [EBP + C]
MOV ECX, EDI
MOV EAX, EAX
SHR ECX, 2
LEA EDI, DWORD PTR[EBX + 18]
REP MOVS DWORD PTR ES:[E
For questions about particular instructions always consult the instruction set reference.
In this case, you will need to look up rep and movs.
In short, rep
repeats the following string operation ecx
times. movs
copies data from ds:esi
to es:edi
and increments or decrements the pointers based on the setting of the direction flag. As such, repeating it will move a range of memory to somewhere else.
PS: usually the operation size is encoded as an instruction suffix, so people use movsb
and movsd
to indicate byte
or dword
operation. Some assemblers however allow specifying the size as in your example, by byte ptr
or dword ptr
. Also, the operands are implicit in the instruction, and you can not modify them.