home *** CD-ROM | disk | FTP | other *** search
- ;
- ; Name utsreg -- Return the segment register values
- ;
- ; Synopsis utsreg(pcs,pss,pds,pes);
- ;
- ; unsigned *pcs,*pss,*pds,*pes
- ; Segment registers are returned in these
- ; variables.
- ;
- ; Description This function returns the values of the segment
- ; registers of the calling function.
- ;
- ; Version 3.0 (C)Copyright Blaise Computing Inc. 1983, 1984, 1986
-
- name utsreg
-
- LONGPROG = 0 ; Initialize constants for
- LONGDATA = 0 ; pass1 of the assembler
-
- include compiler.mac ; Specifies the C compiler
-
- if LAT200 or LAT210 or LAT300
- include dos.mac
- LONGDATA = LDATA
- LONGPROG = LPROG
-
- pseg
- public utsreg
- if LPROG
- utsreg proc far
- x equ 6 ; offset of arguments
- else
- utsreg proc near
- x equ 4
- endif
- if LDATA
- b equ 4
- c equ 8
- d equ 12
- else
- b equ 2
- c equ 4
- d equ 6
- endif
- endif
-
- if MSC300
- include dos.mac
- LONGPROG = LPROG
- LONGDATA = LDATA
-
- pseg utsreg
- public _utsreg
- if LPROG
- x equ 6 ; offset of arguments
- _utsreg proc far
- else
- x equ 4
- _utsreg proc near
- endif
- if LDATA
- b equ 4
- c equ 8
- d equ 12
- else
- b equ 2
- c equ 4
- d equ 6
- endif
- endif
-
- if CI201A
- include model.h
- include prologue.h
- LONGDATA = @bigmodel
- LONGPROG = @bigmodel
-
- public utsreg
- if @bigmodel
- utsreg proc far
- x equ 6
- b equ 4
- c equ 8
- d equ 12
- else
- utsreg proc near
- x equ 4
- b equ 2
- c equ 4
- d equ 6
- endif
- endif
-
- push bp
- mov bp,sp
- if MSC300
- push si ; Save register variables
- endif
-
- if LONGDATA
- push ax ; Store the ES register for
- push es ; recovery later
- les si,dword ptr [bp + x]
- if LONGPROG
- mov cx,[bp + x - 2] ; CS is on the stack
- mov es:[si],cx
- else
- mov es:[si],cs ; CS has not changed for NEAR
- endif
- les si,dword ptr [bp + x + b]
- mov es:[si],ss
- les si,dword ptr [bp + x + c]
- mov es:[si],ds
- les si,dword ptr [bp + x + d]
- pop ax ; This is ES
- mov es:[si],ax
- pop ax ; Restore AX
- else
- mov si,[bp + x]
- if LONGPROG
- mov cx,[bp + x -2] ; CS is on the stack
- mov [si],cx
- else
- mov [si],cs ; CS has not changed for NEAR
- endif
- mov si,[bp + x + b]
- mov [si],ss
- mov si,[bp + x + c]
- mov [si],ds
- mov si,[bp + x + d]
- mov [si],es
- endif
-
- if MSC300 ; Recover index registers
- pop si ; (used for register variables)
- cld ; MSC 3 expects DF = 0.
- endif
- pop bp
- ret
- if MSC300
- _utsreg endp
- else
- utsreg endp
- endif
-
- if LAT200 or LAT210 or LAT300
- endps
- endif
-
- if CI201A
- include epilogue.h
- endif
-
- if MSC300
- endps utsreg
- endif
-
- end