[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Return segment
Source position: system.fpd line 59
function Seg( |
var X |
):LongInt; |
Seg returns the segment of the address of a variable. This function is only supported for compatibility. In Free Pascal, it returns always 0, since Free Pascal uses a flat 32/64 bit memory model. In such a memory model segments have no meaning.
None.
|
Return data segment |
|
|
Return code segment |
|
|
Return offset of a variable. |
|
|
Combine segment and offset to pointer |
Program Example60; { Program to demonstrate the Seg function. } Var W : Word; begin W:=Seg(W); { W contains its own Segment} end.