home *** CD-ROM | disk | FTP | other *** search
- ;
- ; Name kbqueue -- Return total and remaining capacity of
- ; BIOS keyboard queue
- ;
- ; Synopsis avail = kbqueue(ptotal);
- ;
- ; int avail Number of available spaces in
- ; type-ahead queue.
- ; int *ptotal Pointer to variable to receive
- ; total capacity of queue.
- ;
- ; Description This function reports the total capacity of the of the
- ; BIOS type-ahead buffer and the number of unfilled spaces
- ; available in it.
- ;
- ; If the returned value ("avail") is to be used, then
- ; KBQUEUE should probably be called with interrupts turned
- ; off (via UTINTOFF). That will prevent further
- ; keystrokes or other processes from changing the number
- ; of available spaces. Once the value is used, interrupts
- ; may be turned back on via UTINTON.
- ;
- ; KBQUEUE assumes that the BIOS type-ahead buffer is at
- ; the standard location of 0x40:0x1e. It will probably
- ; malfunction otherwise.
- ;
- ; Returns avail Number of available spaces in
- ; type-ahead queue.
- ; *ptotal Pointer to variable to receive
- ; total size of queue.
- ;
- ; Version 3.0 (C)Copyright Blaise Computing Inc. 1986
-
- name kbqueue
-
- LONGPROG = 0 ; initialize constants for
- LONGDATA = 0 ; Pass1 of the assembler
-
- include compiler.mac ; Specifies the C compiler
-
- popff macro ;; Simulate POPF instruction
- local do_call,do_iret
-
- jmp short do_call
-
- do_iret:
- iret ;; Pop IP, CS, flags.
-
- do_call:
- push cs ;; Push CS
- call do_iret ;; Push IP & jump.
-
- endm
-
- if LAT200 or LAT210 or LAT300
- include dos.mac
- LONGPROG = LPROG
- LONGDATA = LDATA
-
- pseg
- public kbqueue
- if LPROG
- x equ 6 ; parameter offset
- kbqueue proc far
- else
- x equ 4
- kbqueue proc near
- endif
- endif
-
- if CI201A
- include model.h
- include prologue.h
- LONGPROG = @bigmodel
- LONGDATA = @bigmodel
-
- public kbqueue
- if @bigmodel
- x equ 6 ; parameter offset
- kbqueue proc far
- else
- x equ 4
- kbqueue proc near
- endif
- endif
-
- if MSC300
- include dos.mac
- LONGPROG = LPROG
- LONGDATA = LDATA
-
- pseg kbqueue
- public _kbqueue
- if LPROG
- x equ 6 ; parameter offset
- _kbqueue proc far
- else
- x equ 4
- _kbqueue proc near
- endif
- endif
-
- if LONGDATA
- ptotal equ dword ptr [bp + x] ; Address of argument
- else
- ptotal equ word ptr [bp + x]
- endif
-
- buffer_head equ word ptr ds:1ah
- buffer_tail equ word ptr ds:1ch
- kb_buffer equ 1eh
- kb_buffer_end equ 3eh
-
- ; Beginning of actual code
-
- push bp
- mov bp,sp
-
- push ds
-
- pushf ; Save interrupt state.
-
- ; Measure buffer size.
- mov ax,((kb_buffer_end-kb_buffer)/2 - 1)
- if LONGDATA
- push es
- les bx,ptotal
- assume es:nothing
- mov [es:bx],ax ; Return buffer size.
- pop es
- else
- mov bx,ptotal
- mov [bx],ax ; Return buffer size.
- endif
-
- mov ax,40h ; Segment address of BIOS data
- mov ds,ax
- assume ds:nothing
-
- cli ; Disable interrupts.
-
- ; Ignoring wraparound, (tail-head) is
- ; number of characters in buffer, and
- ; (head-tail-1) is remaining capacity.
- mov ax,buffer_head
- cmp ax,buffer_tail
- ja measure
-
- ; Compensate for wraparound.
- add ax,kb_buffer_end-kb_buffer
- measure:
- sub ax,buffer_tail
- shr ax,1 ; Convert byte count into word
- ; count.
- dec ax
- ; Now AX has remaining capacity.
-
- ; Exit.
- popff ; Restore interrupt state.
-
- if MSC300
- cld ; Expected by MS C 3.0.
- endif
-
- pop ds
-
- pop bp
- ret
-
- if MSC300
- _kbqueue endp
- else
- kbqueue endp
- endif
-
- if LAT200 or LAT210 or LAT300
- endps
- endif
-
- if CI201A
- include epilogue.h
- endif
-
- if MSC300
- endps kbqueue
- endif
-
- end