]>
wirehaze git hosting - MS-DOS.git/blob - v4.0/src/CMD/KEYB/KEYB.ASM
3 TITLE DOS
- KEYB Command
- Root Module
5 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
6 ;; DOS - NLS Support - KEYB Command
7 ;; (c) Copyright 1988 Microsoft
14 ;; Contains root module for KEYB command. This module is the
15 ;; KEYB command entry point. KEYB is an external command included
16 ;; with PC DOS 3.3 to provide keyboard support for 14 languages.
17 ;; KEYB will jump immediately into the command processing in
18 ;; file KEYBCMD. All resident code is included before KEYBCMD
19 ;; in the linkage list.
21 ;; Documentation Reference:
22 ;; ------------------------
23 ;; PC DOS 3.3 NLS Interface Specification - May ?? 1986
24 ;; PC DOS 3.3 Detailed Design Document - May ?? 1986
26 ;; Procedures Contained in This File:
27 ;; ----------------------------------
30 ;; Include Files Required:
31 ;; -----------------------
32 ;; KEYBCMD.INC - External declarations for transient command
33 ;; processing routines
35 ;; External Procedure References:
36 ;; ------------------------------
37 ;; FROM FILE KEYCMD.ASM:
38 ;; KEYB_COMMAND - Main routine for transient command processing.
40 ;; Linkage Instructions:
41 ;; --------------------
42 ;; Link in .COM format. Resident code/data is in files KEYB thru
45 ;; LINK KEYB+KEYBI9+KEYBI9C+KEYBI2F+KEYBI48+KEYBCPSD+KEYBMSG+
46 ;; COMMSUBS+KEYBTBBL+KEYBCMD;
47 ;; EXE2BIN KEYB.EXE KEYB.COM
53 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
56 CODE SEGMENT PUBLIC 'CODE' BYTE ;;
58 INCLUDE KEYBCMD
.INC ;; Bring in external declarations
59 ;; for transient command processing
60 ASSUME
CS:CODE,DS:CODE ;;
61 ORG 100H
;; required for .COM
68 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;