Administrator
|
pop() means pop from RAM using SP, so *ARG = pop() is effectively the VM command "pop argument 0".
This is moving the return value from the top of the current function's stack to what will be the top of the calling function's stack after the return.
--Mark
|