home *** CD-ROM | disk | FTP | other *** search
- ; Name utdefds -- Return the default data segment, DS
- ;
- ; Synopsis dsval = utdefds();
- ; unsigned dsval The value of the DS register
- ;
- ; Description The value of the DS register is returned as the
- ; value of the function
- ;
- ; Version 3.0 (C)Copyright Blaise Computing Inc. 1983, 1984, 1985
-
- name utdefds
-
- include compiler.mac ; Specifies the C compiler
-
- if LAT200 or LAT210 or LAT300
- include dos.mac
-
- pseg
- public utdefds
- if LPROG
- utdefds proc far
- else
- utdefds proc near
- endif
- endif
-
- if MSC300
- include dos.mac
- LONGPROG = LPROG
- LONGDATA = LDATA
-
- pseg utdefds
- public _utdefds
- if LPROG
- _utdefds proc far
- else
- _utdefds proc near
- endif
- endif
-
- mov ax,ds
- ret
-
- if MSC300
- _utdefds endp
- else
- utdefds endp
- endif
-
- if LAT300 or LAT210 or LAT300
- endps
- endif
-
- if MSC300
- endps utdefds
- endif
-
- end