home *** CD-ROM | disk | FTP | other *** search
- ;
- ; Name bdsx -- Access to DOS Functions
- ;
- ; Synopsis iret = bdsx(fn,dx);
- ;
- ; int iret Value returned in AL by DOS function
- ; int fn DOS function number
- ; int dx Value to placed in the DX register
- ;
- ; Description BDSX is the gate to the DOS functions. It is
- ; functionally the same as the bdos() function usually
- ; distributed with the C compiler, but it returns the
- ; contents of the CX and DX registers in the public
- ; variables b_cxreg and b_dxreg.
- ;
- ; Note: this use of the public variables b_cxreg and
- ; b_dxreg prevents BDSX from being re-entrant. For
- ; example, an interrupting process may spoil the values
- ; returned in b_cxreg and b_dxreg if it uses the same copy
- ; of these variables. Use DOS instead of BDSX to avoid
- ; this limitation.
- ;
- ; Returns iret The value of AL, zero expanded upon
- ; return from the DOS function call.
- ; unsigned b_cxreg,b_dxreg Values of the CX and DX registers
- ; upon return from the DOS function call.
- ;
- ; Version 3.0 (C)Copyright Blaise Computing Inc. 1983,1984,1985,1986
-
- name bdosgate
-
- include compiler.mac ; Specifies the C compiler
-
- ; Definition of public variable b_cxreg and b_dxreg
-
- if LAT200 or LAT210 or LAT300
- include dos.mac
-
- dseg
- public b_cxreg,b_dxreg
- b_cxreg dw 0
- b_dxreg dw 0
- endds
-
- pseg
- public bdsx
- if LPROG
- bdsx proc far
- x equ 6 ; offset of arguments
- else
- bdsx proc near
- x equ 4
- endif
- endif
-
- if MSC300
- include dos.mac
- LONGPROG = LPROG
- LONGDATA = LDATA
-
- dseg
- public _b_cxreg,_b_dxreg
- _b_cxreg dw 0
- _b_dxreg dw 0
- endds
-
- pseg bdsx
- public _bdsx
- if LPROG
- x equ 6 ; offset of arguments
- _bdsx proc far
- else
- x equ 4
- _bdsx proc near
- endif
- endif
-
- push bp ; Save frame pointer
- mov bp,sp ; Set the stack pointer to top of frame
- if MSC300
- push di ; Save register variables
- push si
- endif
-
- cld ; Allegedly required by some DOS
- ; functions.
-
- mov ax,[bp + x]
- mov ah,al
- if MSC300
- mov cx,_b_cxreg
- else
- mov cx,b_cxreg
- endif
- mov dx,[bp + x + 2]
- ; Invoke DOS
- inv_dos:
- int 21h ; DOS function call AH
-
- if MSC300
- mov _b_cxreg,cx ; Recover CX and DX registers
- mov _b_dxreg,dx
- else
- mov b_cxreg,cx ; Recover CX and DX registers
- mov b_dxreg,dx
- endif
- xor ah,ah ; Function return value is now AL
- if MSC300
- pop si ; Recover index registers
- pop di ; (used for register variables)
- cld ; MSC 3 expects DF cleared
- endif
- pop bp ; Recover frame pointer
- ret
-
- if MSC300
- _bdsx endp
- else
- bdsx endp
- endif
-
-
- if LAT210 or LAT300
- endps
- endif
-
- if MSC300
- endps bdsx
- endif
-
- end