[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Return current stack pointer
Source position: systemh.inc line 1410
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:ptruint; begin p:=ofs(stackbottom); { P Contains now the current stack position. } end.