The MASM Forum

Projects => MASM32 => Topic started by: imadhx30 on December 29, 2013, 08:11:30 AM

Title: Adressing!!
Post by: imadhx30 on December 29, 2013, 08:11:30 AM
why addressing memory to a memory not  !!!!!!! mov [memory1],[memory2]
Title: Re: Adressing!!
Post by: dedndave on December 29, 2013, 08:14:55 AM
intel processors don't support MOV mem,mem instructions, per se
it can be done with the MOVS instruction, however, if ESI points to the source and EDI points to the destination
also, PUSH and POP can do it, if one or both of the operands are on the stack

how many bytes do you want to copy ?
is it inside a loop (is speed critical) ?
do you have a register available ?