What is the difference between the operations:
mov dword ptr [eax], 5
and
mov dword [eax], 5
Furthermore, do
mov dword ptr [eax], 5
and
mov [eax], dword ptr 5
do the same thing?
What is the difference between the operations:
mov dword ptr [eax], 5
and
mov dword [eax], 5
Furthermore, do
mov dword ptr [eax], 5
and
mov [eax], dword ptr 5
do the same thing?