Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

1100 lines
42 KiB

PAGE 118,132
TITLE DOS - Keyboard Definition File
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; DOS - - NLS Support - Keyboard Definition File
;; (c) Copyright 1988 Microsoft
;;
;; This file contains the keyboard tables for Russia
;;
;; Linkage Instructions:
;; Refer to KDF.ASM.
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
INCLUDE KEYBSHAR.INC ;;
INCLUDE POSTEQU.INC ;;
INCLUDE KEYBMAC.INC ;;
;;
PUBLIC UR_LOGIC ;;
PUBLIC UR2_LOGIC ;;
PUBLIC UR3_LOGIC ;;
PUBLIC UR_866_XLAT ;;
PUBLIC UR_437_XLAT ;;
PUBLIC UR_850_XLAT ;;
PUBLIC UR_855_XLAT ;;
;;
CODE SEGMENT PUBLIC 'CODE' ;;
ASSUME CS:CODE,DS:CODE ;;
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Standard translate table options are a linear search table
;; (TYPE_2_TAB) and ASCII entries ONLY (ASCII_ONLY)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
STANDARD_TABLE EQU TYPE_2_TAB+ASCII_ONLY
ENX_KBD EQU G_KB+P12_KB
;;
;;
DEBUG EQU 0 ;;
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;***************************************
;;
;; UR State Logic
;;
;;***************************************
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;;
;;
;;
UR_LOGIC: ;;
;;
DW LOGIC_END-$ ;; length
;;
DW SHIFTS_TO_LOGIC+SWITCHABLE ;; special features
;;
;; COMMANDS START HERE
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; OPTIONS: If we find a scan match in
;; an XLATT or SET_FLAG operation then
;; exit from INT 9.
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;;
OPTION EXIT_IF_FOUND ;;
;;
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;; Mode change CHECK
;;
;;
;; <CTRL>+<RIGHT SHIFT> for Russian mode
;;
;; <CTRL>+<LEFT SHIFT> for Latin mode
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;;
IFF SHIFTS_PRESSED ;;
IFF EITHER_ALT,NOT ;;
ANDF EITHER_CTL ;;
IFF LEFT_SHIFT ;;
BEEP ;;
RESET_NLS ;;
ENDIFF ;;
IFF RIGHT_SHIFT ;;
BEEP ;;
SET_FLAG RUS_MODE_SET ;;
ENDIFF ;;
ENDIFF ;;
EXIT_STATE_LOGIC ;;
ENDIFF ;;
;;
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Upper, lower and third shifts
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;;
;;
IFF EITHER_CTL,NOT ;; Lower and upper case. Alphabetic
IFF EITHER_ALT,NOT ;; keys are affected by CAPS LOCK.
IFF RUS_MODE ;;
ANDF LC_E0,NOT ;; Enhanced keys are not
IFF EITHER_SHIFT ;; Numeric keys are not.
XLATT NON_ALPHA_UPPER ;;
IFF CAPS_STATE ;;
XLATT ALPHA_LOWER ;;
ELSEF ;;
XLATT ALPHA_UPPER ;;
ENDIFF ;;
ELSEF ;;
XLATT NON_ALPHA_LOWER ;;
IFF CAPS_STATE ;;
XLATT ALPHA_UPPER ;;
ELSEF ;;
XLATT ALPHA_LOWER ;;
ENDIFF ;;
ENDIFF ;; Third and Fourth shifts
ENDIFF ;;
ELSEF ;; ctl off, alt on at this point
IFKBD XT_KB+AT_KB ;; XT, AT, keyboards.
IFF EITHER_SHIFT ;; only.
XLATT THIRD_SHIFT ;; ALT + shift
ENDIFF ;;
ELSEF ;; ENHANCED keyboard
IFF R_ALT_SHIFT ;; ALTGr
ANDF EITHER_SHIFT,NOT ;;
XLATT THIRD_SHIFT ;;
ENDIFF ;;
ENDIFF ;;
ENDIFF ;;
ENDIFF ;;
;;
;**************************************;;
;;
EXIT_STATE_LOGIC ;;
;;
LOGIC_END: ;;
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;**********************************************************************
;; UR Common Translate Section
;; This section contains translations for the lower 128 characters
;; only since these will never change from code page to code page.
;; Some common Characters are included from 128 - 165 where appropriate.
;; In addition the dead key "Set Flag" tables are here since the
;; dead keys are on the same keytops for all code pages.
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
PUBLIC UR1_COMMON_XLAT ;;
UR1_COMMON_XLAT: ;;
;;
DW COMMON_XLAT_END-$ ;; length of section
DW -1 ;; code page
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; CODE PAGE: Any
;; STATE: RUS_MODE
;; KEYBOARD TYPES: All
;; TABLE TYPE: Flag Table
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
DW COM_F1_END-$ ;; length of state section
DB RUS_MODE_SET ;; State ID
DW ANY_KB ;; Keyboard Type
DB -1,-1 ;; Buffer entry for error character
;;
;; Set Flag Table
DW 3 ;; number of entries
DB 42 ;; scan code (Left Shift)
FLAG LAT_MODE ;; flag bit to set
DB 54 ;; scan code (Right Shift)
FLAG RUS_MODE ;; flag bit to set
DB 29 ;; scan code (Ctrl)
FLAG RUS_MODE ;;
;;
DW 0 ;; Size of xlat table - null table
;;
COM_F1_END: ;;
;;
;;
;;
;;
DW 0 ;; Last State
COMMON_XLAT_END: ;;
;;
;;
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;***************************************
;;
;; UR2 State Logic
;;
;;***************************************
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;;
;;
;;
UR2_LOGIC: ;;
;;
DW LOGIC2_END-$ ;; length
;;
DW SHIFTS_TO_LOGIC ;; special features
;;
;; COMMANDS START HERE
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; OPTIONS: If we find a scan match in
;; an XLATT or SET_FLAG operation then
;; exit from INT 9.
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;;
OPTION EXIT_IF_FOUND ;;
;;
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;; Mode change CHECK
;;
;; MODE CHANGE BY <RIGHT SHIFT>+<LEFT SHIFT>
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;;
IFF SHIFTS_PRESSED ;;
IFF EITHER_CTL,NOT ;;
ANDF EITHER_ALT,NOT ;;
ANDF RIGHT_SHIFT ;;
ANDF LEFT_SHIFT ;;
IFF RUS_MODE ;;
BEEP ;;
RESET_NLS ;;
ELSEF ;;
BEEP ;;
SET_FLAG RUS_MODE_SET ;;
ENDIFF ;;
ENDIFF ;;
EXIT_STATE_LOGIC ;;
ENDIFF ;;
;;
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Upper, lower and third shifts
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;;
;;
IFF EITHER_CTL,NOT ;; Lower and upper case. Alphabetic
IFF EITHER_ALT,NOT ;; keys are affected by CAPS LOCK.
IFF RUS_MODE ;;
ANDF LC_E0,NOT ;; Enhanced keys are not
IFF EITHER_SHIFT ;; Numeric keys are not.
XLATT NON_ALPHA_UPPER ;;
IFF CAPS_STATE ;;
XLATT ALPHA_LOWER ;;
ELSEF ;;
XLATT ALPHA_UPPER ;;
ENDIFF ;;
ELSEF ;;
XLATT NON_ALPHA_LOWER ;;
IFF CAPS_STATE ;;
XLATT ALPHA_UPPER ;;
ELSEF ;;
XLATT ALPHA_LOWER ;;
ENDIFF ;;
ENDIFF ;; Third and Fourth shifts
ENDIFF ;;
ELSEF ;; ctl off, alt on at this point
IFKBD XT_KB+AT_KB ;; XT, AT, keyboards.
IFF EITHER_SHIFT ;; only.
XLATT THIRD_SHIFT ;; ALT + shift
ENDIFF ;;
ELSEF ;; ENHANCED keyboard
IFF R_ALT_SHIFT ;; ALTGr
ANDF EITHER_SHIFT,NOT ;;
XLATT THIRD_SHIFT ;;
ENDIFF ;;
ENDIFF ;;
ENDIFF ;;
ENDIFF ;;
;;
;**************************************;;
;;
EXIT_STATE_LOGIC ;;
;;
LOGIC2_END: ;;
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;**********************************************************************
;; UR Common Translate Section
;; This section contains translations for the lower 128 characters
;; only since these will never change from code page to code page.
;; Some common Characters are included from 128 - 165 where appropriate.
;; In addition the dead key "Set Flag" tables are here since the
;; dead keys are on the same keytops for all code pages.
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
PUBLIC UR2_COMMON_XLAT ;;
UR2_COMMON_XLAT: ;;
;;
DW COMMON2_XLAT_END-$ ;; length of section
DW -1 ;; code page
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; CODE PAGE: Any
;; STATE: RUS_MODE
;; KEYBOARD TYPES: All
;; TABLE TYPE: Flag Table
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
DW COM2_F1_END-$ ;; length of state section
DB RUS_MODE_SET ;; State ID
DW ANY_KB ;; Keyboard Type
DB -1,-1 ;; Buffer entry for error character
;;
;; Set Flag Table
DW 2 ;; number of entries
DB 42 ;; scan code
FLAG RUS_MODE ;; flag bit to set
DB 54 ;;
FLAG RUS_MODE ;;
;;
DW 0 ;; Size of xlat table - null table
;;
COM2_F1_END: ;;
;;
;;
;;
;;
DW 0 ;; Last State
COMMON2_XLAT_END: ;;
;;
;;
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;***************************************
;;
;; UR3 State Logic
;;
;;***************************************
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;;
;;
;;
UR3_LOGIC: ;;
;;
DW LOGIC3_END-$ ;; length
;;
DW SHIFTS_TO_LOGIC ;; special features
;;
;; COMMANDS START HERE
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; OPTIONS: If we find a scan match in
;; an XLATT or SET_FLAG operation then
;; exit from INT 9.
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;;
OPTION EXIT_IF_FOUND ;;
;;
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;; Mode change CHECK
;;
;; MODE CHANGE BY <RIGHT CTRL> PRESS
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;;
IFF SHIFTS_PRESSED ;;
IFF EITHER_SHIFT,NOT ;;
ANDF EITHER_ALT,NOT ;;
ANDF R_CTL_SHIFT ;;
IFF RUS_MODE ;;
BEEP ;;
RESET_NLS ;;
ELSEF ;;
BEEP ;;
SET_FLAG RUS_MODE_SET ;;
ENDIFF ;;
ENDIFF ;;
EXIT_STATE_LOGIC ;;
ENDIFF ;;
;;
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Upper, lower and third shifts
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;;
;;
IFF EITHER_CTL,NOT ;; Lower and upper case. Alphabetic
IFF EITHER_ALT,NOT ;; keys are affected by CAPS LOCK.
IFF RUS_MODE ;;
ANDF LC_E0,NOT ;; Enhanced keys are not
IFF EITHER_SHIFT ;; Numeric keys are not.
XLATT NON_ALPHA_UPPER ;;
IFF CAPS_STATE ;;
XLATT ALPHA_LOWER ;;
ELSEF ;;
XLATT ALPHA_UPPER ;;
ENDIFF ;;
ELSEF ;;
XLATT NON_ALPHA_LOWER ;;
IFF CAPS_STATE ;;
XLATT ALPHA_UPPER ;;
ELSEF ;;
XLATT ALPHA_LOWER ;;
ENDIFF ;;
ENDIFF ;; Third and Fourth shifts
ENDIFF ;;
ELSEF ;; ctl off, alt on at this point
IFKBD XT_KB+AT_KB ;; XT, AT, keyboards.
IFF EITHER_SHIFT ;; only.
XLATT THIRD_SHIFT ;; ALT + shift
ENDIFF ;;
ELSEF ;; ENHANCED keyboard
IFF R_ALT_SHIFT ;; ALTGr
ANDF EITHER_SHIFT,NOT ;;
XLATT THIRD_SHIFT ;;
ENDIFF ;;
ENDIFF ;;
ENDIFF ;;
ENDIFF ;;
;;
;**************************************;;
;;
EXIT_STATE_LOGIC ;;
;;
LOGIC3_END: ;;
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;**********************************************************************
;; UR Common Translate Section
;; This section contains translations for the lower 128 characters
;; only since these will never change from code page to code page.
;; Some common Characters are included from 128 - 165 where appropriate.
;; In addition the dead key "Set Flag" tables are here since the
;; dead keys are on the same keytops for all code pages.
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
PUBLIC UR3_COMMON_XLAT ;;
UR3_COMMON_XLAT: ;;
;;
DW COMMON3_XLAT_END-$ ;; length of section
DW -1 ;; code page
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; CODE PAGE: Any
;; STATE: RUS_MODE
;; KEYBOARD TYPES: All
;; TABLE TYPE: Flag Table
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
DW COM3_F1_END-$ ;; length of state section
DB RUS_MODE_SET ;; State ID
DW ANY_KB ;; Keyboard Type
DB -1,-1 ;; Buffer entry for error character
;;
;; Set Flag Table
DW 1 ;; number of entries
DB 29 ;; scan code
FLAG RUS_MODE ;; flag bit to set
;;
DW 0 ;; Size of xlat table - null table
;;
COM3_F1_END: ;;
;;
;;
;;
;;
DW 0 ;; Last State
COMMON3_XLAT_END: ;;
;;
;;
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;***************************************
;; UR Specific Translate Section for 437
;;***************************************
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
UR_437_XLAT: ;;
;;
DW CP437_XLAT_END-$ ;; length of section
DW 437 ;;
;;
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; CODE PAGE: 437
;; STATE: Third Shift
;; KEYBOARD TYPES: All
;; TABLE TYPE: Translate
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
DW CP437_TS_END-$ ;; length of state section
DB THIRD_SHIFT ;; State ID
DW ANY_KB ;; Keyboard Type
DB -1,-1 ;; Buffer entry for error character
;;
DW CP437_TS_T1_END-$ ;; Size of xlat table
DB STANDARD_TABLE ;; xlat options:
DB 11 ;; number of entries
DB 03H,040H ;; @
DB 04H,023H ;; #
DB 07H,05EH ;; ^
DB 08H,026H ;; &
DB 09H,024H ;; $
DB 1AH,05BH ;; [
DB 1BH,05DH ;; ]
DB 2BH,07CH ;; |
DB 33H,03CH ;; <
DB 34H,03EH ;; >
DB 35H,02FH ;; /
CP437_TS_T1_END: ;;
;;
DW 0 ;; Size of xlat table - null table
;;
CP437_TS_END: ;;
;;
;;
;;
DW 0 ;; LAST STATE
;;
CP437_XLAT_END: ;;
;;
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;***************************************
;; UR Specific Translate Section for 850
;;***************************************
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
UR_850_XLAT: ;;
;;
DW CP850_XLAT_END-$ ;; length of section
DW 850 ;;
;;
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; CODE PAGE: 850
;; STATE: Third Shift
;; KEYBOARD TYPES: All
;; TABLE TYPE: Translate
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
DW CP850_TS_END-$ ;; length of state section
DB THIRD_SHIFT ;; State ID
DW ANY_KB ;; Keyboard Type
DB -1,-1 ;; Buffer entry for error character
;;
DW CP850_TS_T1_END-$ ;; Size of xlat table
DB STANDARD_TABLE ;; xlat options:
DB 12 ;; number of entries
DB 03H,040H ;; @
DB 04H,023H ;; #
DB 05H,0CFH ;; RUBLES sign ý
DB 07H,05EH ;; ^
DB 08H,026H ;; &
DB 09H,024H ;; $
DB 1AH,05BH ;; [
DB 1BH,05DH ;; ]
DB 2BH,07CH ;; |
DB 33H,03CH ;; <
DB 34H,03EH ;; >
DB 35H,02FH ;; /
CP850_TS_T1_END: ;;
;;
DW 0 ;; Size of xlat table - null table
;;
CP850_TS_END: ;;
;;
;;
;;
DW 0 ;; LAST STATE
;;
CP850_XLAT_END: ;;
;;
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;***************************************
;; UR Specific Translate Section for 855
;;***************************************
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
UR_855_XLAT: ;;
;;
DW CP855_XLAT_END-$ ;; length of section
DW 855 ;;
;;
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; CODE PAGE: 855
;; STATE: Non-Alpha Lower Case
;; KEYBOARD TYPES: All
;; TABLE TYPE: Translate
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
DW CP855_NA_K1_LO_END-$ ;; length of state section
DB NON_ALPHA_LOWER ;; State ID
DW ANY_KB ;; Keyboard Type
DB -1,-1 ;; Buffer entry for error character
;;
DW CP855_NA_LO_K1_T1_END-$ ;; Size of xlat table
DB STANDARD_TABLE ;; xlat options:
DB 1 ;; number of entries
DB 53,02EH ;; .
CP855_NA_LO_K1_T1_END: ;;
;;
DW 0 ;; Size of xlat table - null table
;;
CP855_NA_K1_LO_END: ;;
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; CODE PAGE: 855
;; STATE: Non-Alpha Upper Case
;; KEYBOARD TYPES: All
;; TABLE TYPE: Translate
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
DW CP855_NA_UP_END-$ ;; length of state section
DB NON_ALPHA_UPPER ;; State ID
DW ANY_KB ;; Keyboard Type
DB -1,-1 ;; Buffer entry for error character
;;
DW CP855_NA_UP_T1_END-$ ;; Size of xlat table
DB STANDARD_TABLE ;; xlat options:
DB 7 ;; number of entries
DB 3,022H ;; "
DB 4,0EFH ;; NUMBER sign
DB 5,03BH ;; ;
DB 7,03AH ;; :
DB 8,03FH ;; ?
DB 43,02FH ;; /
DB 53,02CH ;; ,
CP855_NA_UP_T1_END: ;;
;;
DW 0 ;; Size of xlat table - null table
;;
CP855_NA_UP_END: ;;
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; CODE PAGE: 855
;; STATE: Third Shift
;; KEYBOARD TYPES: All
;; TABLE TYPE: Translate
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
DW CP855_TS_END-$ ;; length of state section
DB THIRD_SHIFT ;; State ID
DW ANY_KB ;; Keyboard Type
DB -1,-1 ;; Buffer entry for error character
;;
DW CP855_TS_T1_END-$ ;; Size of xlat table
DB STANDARD_TABLE ;; xlat options:
DB 12 ;; number of entries
DB 03H,040H ;; @
DB 04H,023H ;; #
DB 05H,0CFH ;; RUBLES sign ý
DB 07H,05EH ;; ^
DB 08H,026H ;; &
DB 09H,024H ;; $
DB 1AH,05BH ;; [
DB 1BH,05DH ;; ]
DB 2BH,07CH ;; |
DB 33H,03CH ;; <
DB 34H,03EH ;; >
DB 35H,02FH ;; /
CP855_TS_T1_END: ;;
;;
DW 0 ;; Size of xlat table - null table
;;
CP855_TS_END: ;;
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; CODE PAGE: 855
;; STATE: Alpha Lower Case
;; KEYBOARD TYPES: All
;; TABLE TYPE: Translate
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
DW CP855_A_K1_LO_END-$ ;; length of state section
DB ALPHA_LOWER ;; State ID
DW ANY_KB ;; Keyboard Type
DB -1,-1 ;; Buffer entry for error character
;;
DW CP855_A_LO_K1_T1_END-$ ;; Size of xlat table
DB ASCII_ONLY ;; xlat options:
DB 16 ;; Scan code
DB 27 ;; range
DB 0BDH ;; ©
DB 0A4H ;; æ
DB 0E7H ;; ã
DB 0C6H ;; ª
DB 0A8H ;; ¥
DB 0D4H ;; ­
DB 0ACH ;; £
DB 0F5H ;; è
DB 0F9H ;; é
DB 0F3H ;; §
DB 0B5H ;; å
DB 08CH ;; õ
CP855_A_LO_K1_T1_END: ;;
;;
;;
DW CP855_A_LO_K1_T2_END-$ ;; Size of xlat table
DB ASCII_ONLY ;; xlat options:
DB 30 ;; Scan code
DB 41 ;; range
DB 0AAH ;; ä
DB 08AH ;; i
DB 0EBH ;; ¢
DB 0A0H ;;  
DB 0D8H ;; ¯
DB 0E1H ;; à
DB 0D6H ;; ®
DB 0D0H ;; «
DB 0A6H ;; ¤
DB 0E9H ;; ¦
DB 086H ;; ó
DB 027H ;; '
CP855_A_LO_K1_T2_END: ;;
;;
;;
DW CP855_A_LO_K1_T4_END-$ ;; Size of xlat table
DB ASCII_ONLY ;; xlat options:
DB 44 ;; Scan code
DB 52 ;; range
DB 0DEH ;; ï
DB 0FBH ;; ç
DB 0E3H ;; á
DB 0D2H ;; ¬
DB 0B7H ;; ¨
DB 0E5H ;; â
DB 0EDH ;; ì
DB 0A2H ;; ¡
DB 09CH ;; î
CP855_A_LO_K1_T4_END: ;;
;;
DW 0 ;; Size of xlat table - null table
;;
CP855_A_K1_LO_END: ;;
;;
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; CODE PAGE: 855
;; STATE: Alpha Upper Case
;; KEYBOARD TYPES: All
;; TABLE TYPE: Translate
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
DW CP855_A_K1_UP_END-$ ;; length of state section
DB ALPHA_UPPER ;; State ID
DW ANY_KB ;; Keyboard Type
DB -1,-1 ;; Buffer entry for error character
;;
DW CP855_A_UP_K1_T1_END-$ ;; Size of xlat table
DB ASCII_ONLY ;; xlat options:
DB 16 ;; Scan code
DB 27 ;; range
DB 0BEH ;; ‰
DB 0A5H ;; –
DB 0E8H ;; “
DB 0C7H ;; Š
DB 0A9H ;; …
DB 0D5H ;; �
DB 0ADH ;; ƒ
DB 0F6H ;; ˜
DB 0FAH ;; ™
DB 0F4H ;; ‡
DB 0B6H ;; •
DB 08DH ;; ô
CP855_A_UP_K1_T1_END: ;;
;;
;;
DW CP855_A_UP_K1_T2_END-$ ;; Size of xlat table
DB ASCII_ONLY ;; xlat options:
DB 30 ;; Scan code
DB 41 ;; range
DB 0ABH ;; ”
DB 08BH ;; I
DB 0ECH ;; ‚
DB 0A1H ;; €
DB 0DDH ;; �
DB 0E2H ;; �
DB 0D7H ;; Ž
DB 0D1H ;; ‹
DB 0A7H ;; „
DB 0EAH ;; †
DB 087H ;; ò
DB 027H ;; '
CP855_A_UP_K1_T2_END: ;;
;;
;;
DW CP855_A_UP_K1_T3_END-$ ;; Size of xlat table
DB ASCII_ONLY ;; xlat options:
DB 45 ;; Scan code
DB 52 ;; range
DB 0FCH ;; —
DB 0E4H ;; ‘
DB 0D3H ;; Œ
DB 0B8H ;; ˆ
DB 0E6H ;; ’
DB 0EEH ;; œ
DB 0A3H ;; �
DB 09DH ;; ž
CP855_A_UP_K1_T3_END: ;;
;;
;;
DW CP855_A_UP_K1_T5_END-$ ;; Size of xlat table
DB TYPE_2_TAB+ZERO_SCAN ;; xlat options:
DB 1 ;; number of entries
DB 44,0E0H ;; Ÿ
;;
CP855_A_UP_K1_T5_END: ;;
;;
DW 0 ;; Size of xlat table - null table
;;
CP855_A_K1_UP_END: ;;
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
DW 0 ;; LAST STATE
;;
CP855_XLAT_END: ;;
;;
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; ;;
;; ********************************************* ;;
;; * UR Specific Translate Section for 866 * ;;
;; ********************************************* ;;
;; ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
UR_866_XLAT: ;;
;;
DW CP866_XLAT_END-$ ;; length of section
DW 866 ;;
;;
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; CODE PAGE: 866
;; STATE: Non-Alpha Lower Case
;; KEYBOARD TYPES: All
;; TABLE TYPE: Translate
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
DW CP866_NA_K1_LO_END-$ ;; length of state section
DB NON_ALPHA_LOWER ;; State ID
DW ANY_KB ;; Keyboard Type
DB -1,-1 ;; Buffer entry for error character
;;
DW CP866_NA_LO_K1_T1_END-$ ;; Size of xlat table
DB STANDARD_TABLE ;; xlat options:
DB 1 ;; number of entries
DB 53,02EH ;; .
CP866_NA_LO_K1_T1_END: ;;
;;
DW 0 ;; Size of xlat table - null table
;;
CP866_NA_K1_LO_END: ;;
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; CODE PAGE: 866
;; STATE: Non-Alpha Upper Case
;; KEYBOARD TYPES: All
;; TABLE TYPE: Translate
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
DW CP866_NA_UP_END-$ ;; length of state section
DB NON_ALPHA_UPPER ;; State ID
DW ANY_KB ;; Keyboard Type
DB -1,-1 ;; Buffer entry for error character
;;
DW CP866_NA_UP_T1_END-$ ;; Size of xlat table
DB STANDARD_TABLE ;; xlat options:
DB 7 ;; number of entries
DB 3,022H ;; "
DB 4,0FCH ;; NUMBER sign
DB 5,03BH ;; ;
DB 7,03AH ;; :
DB 8,03FH ;; ?
DB 43,02FH ;; /
DB 53,02CH ;; ,
CP866_NA_UP_T1_END: ;;
;;
DW 0 ;; Size of xlat table - null table
;;
CP866_NA_UP_END: ;;
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; CODE PAGE: 866
;; STATE: Third Shift
;; KEYBOARD TYPES: All
;; TABLE TYPE: Translate
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
DW CP866_TS_END-$ ;; length of state section
DB THIRD_SHIFT ;; State ID
DW ANY_KB ;; Keyboard Type
DB -1,-1 ;; Buffer entry for error character
;;
DW CP866_TS_T1_END-$ ;; Size of xlat table
DB STANDARD_TABLE ;; xlat options:
DB 12 ;; number of entries
DB 03H,040H ;; @
DB 04H,023H ;; #
DB 05H,0FDH ;; RUBLES sign ý
DB 07H,05EH ;; ^
DB 08H,026H ;; &
DB 09H,024H ;; $
DB 1AH,05BH ;; [
DB 1BH,05DH ;; ]
DB 2BH,07CH ;; |
DB 33H,03CH ;; <
DB 34H,03EH ;; >
DB 35H,02FH ;; /
CP866_TS_T1_END: ;;
;;
DW 0 ;; Size of xlat table - null table
;;
CP866_TS_END: ;;
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; CODE PAGE: 866
;; STATE: Alpha Lower Case
;; KEYBOARD TYPES: All
;; TABLE TYPE: Translate
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
DW CP866_A_K1_LO_END-$ ;; length of state section
DB ALPHA_LOWER ;; State ID
DW ANY_KB ;; Keyboard Type
DB -1,-1 ;; Buffer entry for error character
;;
DW CP866_A_LO_K1_T1_END-$ ;; Size of xlat table
DB ASCII_ONLY ;; xlat options:
DB 16 ;; Scan code
DB 27 ;; range
DB 169 ;; ©
DB 230 ;; æ
DB 227 ;; ã
DB 170 ;; ª
DB 165 ;; ¥
DB 173 ;; ­
DB 163 ;; £
DB 232 ;; è
DB 233 ;; é
DB 167 ;; §
DB 229 ;; å
DB 245 ;; õ
CP866_A_LO_K1_T1_END: ;;
;;
;;
DW CP866_A_LO_K1_T2_END-$ ;; Size of xlat table
DB ASCII_ONLY ;; xlat options:
DB 30 ;; Scan code
DB 34 ;; range
DB 228 ;; ä
DB 105 ;; i
DB 162 ;; ¢
DB 160 ;;  
DB 175 ;; ¯
CP866_A_LO_K1_T2_END: ;;
;;
;;
DW CP866_A_LO_K1_T3_END-$ ;; Size of xlat table
DB ASCII_ONLY ;; xlat options:
DB 36 ;; Scan code
DB 41 ;; range
DB 174 ;; ®
DB 171 ;; «
DB 164 ;; ¤
DB 166 ;; ¦
DB 243 ;; ó
DB 039 ;; '
CP866_A_LO_K1_T3_END: ;;
;;
;;
DW CP866_A_LO_K1_T4_END-$ ;; Size of xlat table
DB ASCII_ONLY ;; xlat options:
DB 44 ;; Scan code
DB 52 ;; range
DB 239 ;; ï
DB 231 ;; ç
DB 225 ;; á
DB 172 ;; ¬
DB 168 ;; ¨
DB 226 ;; â
DB 236 ;; ì
DB 161 ;; ¡
DB 238 ;; î
CP866_A_LO_K1_T4_END: ;;
;;
;;
DW CP866_A_LO_K1_T5_END-$ ;; Size of xlat table
DB TYPE_2_TAB+ZERO_SCAN ;; xlat options:
DB 1 ;; number of entries
DB 35,0E0H ;; à
CP866_A_LO_K1_T5_END: ;;
;;
DW 0 ;; Size of xlat table - null table
;;
CP866_A_K1_LO_END: ;;
;;
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; CODE PAGE: 866
;; STATE: Alpha Upper Case
;; KEYBOARD TYPES: All
;; TABLE TYPE: Translate
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
DW CP866_A_K1_UP_END-$ ;; length of state section
DB ALPHA_UPPER ;; State ID
DW ANY_KB ;; Keyboard Type
DB -1,-1 ;; Buffer entry for error character
;;
DW CP866_A_UP_K1_T1_END-$ ;; Size of xlat table
DB ASCII_ONLY ;; xlat options:
DB 16 ;; Scan code
DB 27 ;; range
DB 137 ;; ‰
DB 150 ;; –
DB 147 ;; “
DB 138 ;; Š
DB 133 ;; …
DB 141 ;; �
DB 131 ;; ƒ
DB 152 ;; ˜
DB 153 ;; ™
DB 135 ;; ‡
DB 149 ;; •
DB 244 ;; ô
CP866_A_UP_K1_T1_END: ;;
;;
;;
DW CP866_A_UP_K1_T2_END-$ ;; Size of xlat table
DB ASCII_ONLY ;; xlat options:
DB 30 ;; Scan code
DB 41 ;; range
DB 148 ;; ”
DB 073 ;; I
DB 130 ;; ‚
DB 128 ;; €
DB 143 ;; �
DB 144 ;; �
DB 142 ;; Ž
DB 139 ;; ‹
DB 132 ;; „
DB 134 ;; †
DB 242 ;; ò
DB 039 ;; '
CP866_A_UP_K1_T2_END: ;;
;;
;;
DW CP866_A_UP_K1_T3_END-$ ;; Size of xlat table
DB ASCII_ONLY ;; xlat options:
DB 44 ;; Scan code
DB 52 ;; range
DB 159 ;; Ÿ
DB 151 ;; —
DB 145 ;; ‘
DB 140 ;; Œ
DB 136 ;; ˆ
DB 146 ;; ’
DB 156 ;; œ
DB 129 ;; �
DB 158 ;; ž
CP866_A_UP_K1_T3_END: ;;
;;
;;
;;
DW 0 ;; Size of xlat table - null table
;;
CP866_A_K1_UP_END: ;;
;;
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
DW 0 ;; LAST STATE
;;
CP866_XLAT_END: ;;
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
CODE ENDS ;;
END ;;