Sptr

Declaration:
Function Sptr : Pointer;
Description:
Sptr returns the current stack pointer.
Errors:
None.
See also:
SSeg (579)

Listing: refex/ex64.pp


Program Example64;

{ Program to demonstrate the SPtr function. }
Var
  P :Longint;

begin
  P:=Sptr; { P Contains now the current stack position. }
end.