home *** CD-ROM | disk | FTP | other *** search
- ;
- ; Name kbplace -- Place one keystroke in keyboard buffer.
- ;
- ; Synopsis ercode = kbplace(at_head,value,scan);
- ;
- ; int ercode 0 if successful, 1 if buffer full.
- ; int at_head KB_HEAD if keystroke is to be placed
- ; at head of queue,
- ; KB_TAIL if at tail.
- ; char value ASCII value of keystroke (0 if
- ; not an ASCII character).
- ; char scan Scan code of keystroke.
- ;
- ; Description This function places one keystroke at the head or tail
- ; of the BIOS type-ahead buffer if there is room for it.
- ;
- ; KBPLACE assumes that the BIOS type-ahead buffer is at
- ; the standard location of 0x40:0x1e. It will probably
- ; malfunction otherwise.
- ;
- ; The BIOS keyboard buffer is arranged as a circular queue
- ; of fifteen pairs of bytes (plus one pair for overhead).
- ; For extended key sequences the character value is 0 and
- ; the scan code is as described in the IBM Technical
- ; Reference. For ASCII characters, on the other hand, the
- ; first byte of the pair is the ASCII code for the
- ; character and the second is the keystroke's scan code
- ; (if the key was generated by a normal scan code) or 0
- ; (if the key was generated by ALT plus the numeric ASCII
- ; code on the numeric keypad). For instance,
- ;
- ; pressing 'a' generates character 65, scan code 30,
- ;
- ; but
- ;
- ; pressing ALT + 65 generates character 65, scan code 0.
- ;
- ; (Virtually all application programs treat those two
- ; cases identically.)
- ;
- ; Returns ercode 0 if successful, 1 if buffer full.
- ;
- ; Version 3.0 (C)Copyright Blaise Computing Inc. 1986
-
- name kbplace
-
- 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 kbplace
- if LPROG
- x equ 6 ; parameter offset
- kbplace proc far
- else
- x equ 4
- kbplace proc near
- endif
- a equ 0
- b equ 2
- c equ 4
- endif
-
- if CI201A
- include model.h
- include prologue.h
- LONGPROG = @bigmodel
- LONGDATA = @bigmodel
-
- public kbplace
- if @bigmodel
- x equ 6 ; parameter offset
- kbplace proc far
- else
- x equ 4
- kbplace proc near
- endif
- a equ 0
- b equ 2
- c equ 4
- endif
-
- if MSC300
- include dos.mac
- LONGPROG = LPROG
- LONGDATA = LDATA
-
- pseg kbplace
- public _kbplace
- if LPROG
- x equ 6 ; parameter offset
- _kbplace proc far
- else
- x equ 4
- _kbplace proc near
- endif
- a equ 0
- b equ 2
- c equ 4
- endif
-
- KB_HEAD equ 1
- KB_TAIL equ 0
-
- at_head equ word ptr [bp + x + a] ; Addresses of arguments
- value equ byte ptr [bp + x + b]
- scan equ byte ptr [bp + x + c]
-
- 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.
-
- mov ax,40h ; Segment address of BIOS data
- mov ds,ax
- assume ds:nothing
-
- cli ; Disable interrupts.
-
- cmp at_head,KB_TAIL
- je try_at_tail
-
- mov bx,buffer_head
- dec bx ; Tentatively step head back.
- dec bx
- cmp bx,kb_buffer
- jae k5h
- ; Went past beginning of buffer,
- mov bx,kb_buffer_end-2 ; so wrap to end.
- k5h:
- ; Now BX has new head pointer.
- cmp bx,buffer_tail
- je no_room
-
- mov al,value
- mov ah,scan
- mov [bx],ax ; Store value & scan code
- ; at buffer head.
- mov buffer_head,bx ; New head pointer.
-
- jmp short success
-
- try_at_tail:
- mov bx,buffer_tail
- mov cx,bx
- inc cx ; Tentatively advance new tail.
- inc cx
- cmp cx,kb_buffer_end
- jb k5
- ; Went past end of buffer,
- mov cx,kb_buffer ; so wrap to beginning.
- k5:
- ; Now CX has new tail.
- cmp cx,buffer_head
- je no_room
-
- mov al,value
- mov ah,scan
- mov [bx],ax ; Store value & scan code
- ; at buffer tail.
- mov buffer_tail,cx ; New tail pointer.
-
- success:
- xor ax,ax
- jmp short exit
-
- no_room:
- mov ax,1
-
- exit:
- popff ; Restore interrupt state.
-
- if MSC300
- cld ; Expected by MS C 3.0.
- endif
-
- pop ds
-
- pop bp
- ret
-
- if MSC300
- _kbplace endp
- else
- kbplace endp
- endif
-
- if LAT200 or LAT210 or LAT300
- endps
- endif
-
- if CI201A
- include epilogue.h
- endif
-
- if MSC300
- endps kbplace
- endif
-
- end