push 360 mov eax, 7 mul [esp] pop edi
I can not understand why this program gives the result of 728 .
728
[esp]
esp
You did not specify the size of the operand and the AX is multiplied by one byte from memory. Use an explicit indication of the size of the operand.
push 360 mov eax, 7 mul dword ptr [esp] pop edi
Source: https://ru.stackoverflow.com/questions/526151/More articles:“Wrapping” Methods in C #Change SeekBar and time text outputWhat does <> (read in the book) mean?Expansion google, tell me the true pathPython.Tkinter. How to assign a command to a button in a loop, reading data from a json file? [duplicate]Do I need to reconfigure the swap partition?Isolate the plugin from external cssHow to loop the jquery animationHow to make the animation not return after executionSpontaneous disconnection of the mouseAll Articles
[esp]? :) Where doesespshow you? - Harry