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 pop it(otherwise it'd get all cluttered later in the program?). Should I pop it? How should I do it?