| [Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] | 
Return data segment
Source position: systemh.inc line 1063
| function Dseg: Word; | 
DSeg returns the data segment register. In Free Pascal, it returns always a zero, since Free Pascal is a 32/64 bit compiler.
None.
| 
 | Return code segment | |
| 
 | Return segment | |
| 
 | Return offset of a variable. | |
| 
 | Combine segment and offset to pointer | 
Program Example17; { Program to demonstrate the DSeg function. } Var W : Word; begin W:=DSeg; {W:=0, This function is provided for compatibility, FPC is a 32 bit compiler.} end.