please clarify my 3 doubts
1)add eax, dword ptr [404000] : means adding the value of eax + the 4 byte value at memory address 40400 and storing it in eax. correct?
2) what does this mean : add eax, dword ptr [eax] ?
3) what does this mean : add eax, dword ptr [eax+00404000] ?
and how does the registers get related to memory?
---------------------------------------------------------------------
the instruction : dec [eax+401000]
does it mean :
1) decreases the dword value at eax + the value 401000h by 1?
2) decrease the dword that is stored at [eax+401000] ?
are 1 and 2 the same ? if different please xplain in an easy language( not hi fi assembly terms)
and what does the second instruction mean?
Bookmarks