POP¶
Function¶
POP fetches (POP’s) a value from the machine code subroutine linkage stack.
Syntax¶
POP(N)
where N=number of parameters to be POPPED.
Examples¶
A=POP(2)
POPs two values off the machine code linkage stack.
A=latter parameter.
Remarks¶
Allows Basic to access 16 bit results from machine code subroutines.
Refer to Machine Code Calls which discusses machine code calls.
Warning
Do not attempt to pop more variables from the stack than have been pushed.