Can I use mov
with an indirect operand as both the source and destination?
E.g.
mov eax, OFFSET foo
mov esi, OFFSET bar
mov [eax],[esi + LENGTHOF bar]
From what I've tried I'm guessing you can't due to an invalid instruction operand
error. But I haven't read anywhere that explicitly states you can't so I want to make sure it's not due to some other error.