home *** CD-ROM | disk | FTP | other *** search
- ;
- ; Name bios -- Invoke a BIOS function
- ;
- ; Synopsis ercode = bios(cmd,pax,pbx,pcx,pdx,pflags);
- ;
- ; int ercode Return code is 0 if a legal BIOS function
- ; is called; otherwise -1 is returned.
- ; int cmd BIOS interrupt number
- ; int *pax,*pbx,*pcx,*pdx,*pflags
- ; Pointers to register values
- ;
- ; extern unsigned b_es, b_bp
- ; Values for ES and BP registers.
- ;
- ; Description The parameter cmd specifies the BIOS routine to invoke.
- ; The parameters pax, pbx, pcx, pdx, and pflags are
- ; pointers to values for the general registers AX, BX, CX,
- ; and DX and for the flags register. These registers (as
- ; well as the external variables b_es and b_bp) supply
- ; information for the function as well as return
- ; information. See the BIOS listing in the IBM Technical
- ; Reference Manual for a full description of the available
- ; BIOS routines and their calling sequences.
- ;
- ; Returns ercode Error code. -1 if an illegal function
- ; call is made, 0 if OK.
- ; pax,pbx,pcx,pdx Register values upon exit from the BIOS
- ; pflags Flag register value upon exit from BIOS
- ; function. (Flag settings are not used
- ; upon input.)
- ; b_es,b_bp Register values upon exit from the BIOS
- ;
- ; Version 3.0 (C)Copyright Blaise Computing Inc. 1983, 1984, 1985, 1986
-
- name biosgate
-
- 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
- LONGPROG = LPROG
- LONGDATA = LDATA
-
- dseg
- public b_es,b_bp
- b_es dw 0
- b_bp dw 0
- endds
-
- pseg
- public bios
- if LPROG
- x equ 6 ; parameter offset
- bios proc far
- else
- x equ 4
- bios proc near
- endif
- if LDATA
- a equ 2 ; location of parameters
- b equ 6 ; on the stack. Offset is
- c equ 10 ; pointer size.
- d equ 14
- e equ 18
- else
- a equ 2
- b equ 4
- c equ 6
- d equ 8
- e equ 10
- endif
- endif
-
-
- if MSC300
- include dos.mac
- LONGPROG = LPROG
- LONGDATA = LDATA
-
- dseg
- public _b_es,_b_bp
- _b_es dw 0
- _b_bp dw 0
- endds
-
- pseg bios
- public _bios
- if LPROG
- x equ 6 ; parameter offset
- _bios proc far
- else
- x equ 4
- _bios proc near
- endif
- if LDATA
- a equ 2 ; location of parameters
- b equ 6 ; on the stack. Offset is
- c equ 10 ; pointer size.
- d equ 14
- e equ 18
- else
- a equ 2
- b equ 4
- c equ 6
- d equ 8
- e equ 10
- endif
- endif
-
-
- push bp ; Save the frame pointer
- mov bp,sp
-
- push di ; Save register variables
- push si
- push es
-
- if LONGDATA ; Get values for AX,BX,CX,DX
- les si,dword ptr [bp + x + a]
- mov ax,es:[si]
- les si,dword ptr [bp + x + b]
- mov bx,es:[si]
- les si,dword ptr [bp + x + c]
- mov cx,es:[si]
- les si,dword ptr [bp + x + d]
- mov dx,es:[si]
- else
- mov si,[bp + x + a] ; Get the values for the registers
- mov ax,[si]
- mov si,[bp + x + b]
- mov bx,[si]
- mov si,[bp + x + c]
- mov cx,[si]
- mov si,[bp + x + d]
- mov dx,[si]
- endif
-
- mov si,[bp + x]
-
- if MSC300
- mov es,_b_es ; ES and BP needed for certain new
- mov bp,_b_bp ; BIOS functions for PC-AT, EGA, etc.
- else
- mov es,b_es ; ES and BP needed for certain new
- mov bp,b_bp ; BIOS functions for PC-AT, EGA, etc.
- endif
-
- cmp si,10h ; Compare the command with each
- je video ; interrupt and execute
- cmp si,11h ; when equality is found.
- je equip
- cmp si,12h
- je memory
- cmp si,13h
- je disk
- cmp si,14h
- je comm
- cmp si,15h
- je cass
- cmp si,16h
- je keybd
- cmp si,17h
- je print
- cmp si,18h
- je cbasic
- cmp si,19h
- je boot
- cmp si,1ah
- je time
- cmp si,1bh
- je kbbrk
- cmp si,1ch
- je tick
-
- mov ax,0ffffh ; error
- jmp short quit
-
- video: int 10h ; Video
- jmp short uret
- equip: int 11h ; Equipment Check
- jmp short uret
- memory: int 12h ; Memory size determination
- jmp short uret
- disk: int 13h ; Diskette I/O
- jmp short uret
- comm: int 14h ; RS232 Communications I/O
- jmp short uret
- cass: int 15h ; Tape Cassette I/O
- jmp short uret
- keybd: int 16h ; Keyboard I/O
- jmp short uret
- print: int 17h ; Printer I/O
- jmp short uret
- cbasic: int 18h ; Cassette BASIC
- jmp short uret
- boot: int 19h ; Bootstrap
- jmp short uret
- time: int 1ah ; Time of day
- jmp short uret
- kbbrk: int 1bh ; Keyboard break
- jmp short uret
- tick: int 1ch ; Timer tick
-
-
- uret:
- if MSC300
- mov _b_bp,bp
- mov _b_es,es
- else
- mov b_bp,bp
- mov b_es,es
- endif
-
- mov bp,sp ; Now recover the values of the
- ; parameters.
- pushf
- add bp,6 ; DI, SI, and ES are on stack.
-
- if LONGDATA
- les si,dword ptr [bp + x + a]
- mov es:[si],ax
- les si,dword ptr [bp + x + b]
- mov es:[si],bx
- les si,dword ptr [bp + x + c]
- mov es:[si],cx
- les si,dword ptr [bp + x + d]
- mov es:[si],dx
- les si,dword ptr [bp + x + e]
- pop ax ; Get the flags
- mov es:[si],ax
- else
- mov si,[bp + x + a] ; Get the values for the registers
- mov [si],ax
- mov si,[bp + x + b]
- mov [si],bx
- mov si,[bp + x + c]
- mov [si],cx
- mov si,[bp + x + d]
- mov [si],dx
- mov si,[bp + x + e]
- pop ax ; Get the flags
- mov [si],ax
- endif
- xor ax,ax ; Success code 0
-
- quit:
- pop es
- pop si
- pop di
- cld ; Microsoft C 3 assumes DF = 0.
-
- pop bp ; Get the original frame pointer.
- ret
- if MSC300
- _bios endp
- else
- bios endp
- endif
-
-
- if LAT200 or LAT210 or LAT300
- endps
- endif
-
- if MSC300
- endps bios
- endif
-
- end