I want to call the Sleep function on ASM. So I wrote the following:
push 5000
call Sleep
Although everything went well, I had the idea that every time I pushed a value on the stack, I should also pop up (otherwise it will be cluttered later in the program?). Should I appear? How can I do it?
source
share