⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fx_kbd3.asm

📁 [随书类]Dos6.0源代码
💻 ASM
字号:
;*
;*	CW : Character Windows Drivers
;*
;*	fx_kbd3.asm : DOS 3 Fixed keyboard driver (linked in)
;*	* DOES NOT INCLUDE "kbd_code"
;*	* has data in application's data segment
;*****************************************************************************

	include	kbd_head.inc

	include	fxdrv.inc

	include	kbd3.inc
	;* special stuff for DOS 3 driver
	include scan3.inc
	include tsr3.inc
	include bios.inc

	include	kbd_data.inc

;*****************************************************************************

;*	* Special DATA
	include	fx_data.asm

;*****************************************************************************

sBegin	DRV
    assumes CS,DRV
    assumes ds,NOTHING
    assumes ss,NOTHING

;*	* There is no low memory structure for the linked driver
lpwDataKbd	EQU	THIS DWORD
OFF_lpwDataKbd	DW	dataOffset rgwDataKbd
SEG_lpwDataKbd	DW	SEG DGROUP

STD_NUMPAD = 1		; normal DOS3 numpad handling (eats '5')

;*****************************************************************************

;*	* keyboard tables go here

	include keytable.asm			;* Scan code tables

	include	kbd_ibm.asm			;* IBM helpers etc


;*****************************************************************************

;*	* Main routines

	include	keyacc3.asm			;* accessory routines

	include	keyddl3.asm			;* shift diddle tables

	include	keyint3.asm			;* interrupt

	include	keyxlat.asm			;* polling translations

;*****************************************************************************

	include	kbd_std.asm		;* standard init/term

;*****************************************************************************

	include	kbd_tail.asm		;* tail file

;*****************************************************************************

	END

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -