[Overview][Constants][Types][Classes][Procedures and functions][Variables] |
Return current stack pointer
Source position: systemh.inc line 594
function Sptr: Pointer; |
Sptr returns the current stack pointer.
None.
|
Return stack segment register value. |
Program Example64; { Program to demonstrate the SPtr function. } Var P :Longint; begin P:=Longint(Sptr); { P Contains now the current stack position. } end.