push ax ;; pushes 2 bytes push eax ;; pushes 4 bytes
pop ax ;; pops 2 bytes pop eax ;; pops 4 bytes
Example:
add esp, 2 ;; pops and discard 2 bytes add esp, 4 ;; pops and discard 4 bytes
call Label
ret