Calling windows functions in ASM (push/pop question)
網頁描述
I want to call the Sleep function on ASM. So I wrote the following:
push 5000
call Sleep
Although everything went fine, I had the idea that everytime I pushed a value on the stack, I should also p...