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.

67 lines
1.8 KiB

  1. PAGE ,132
  2. TITLE MS-DOS 5.0 KEYB Command - Root Module
  3. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  4. ; MS-DOS 5.0 - NLS Support - KEYB Command
  5. ; (c) Copyright Microsoft Corp 1987-1991
  6. ;
  7. ; File Name: KEYB.ASM
  8. ; ----------
  9. ;
  10. ;
  11. ; Description:
  12. ; ------------
  13. ; Contains root module for KEYB command. This module is the
  14. ; KEYB command entry point. KEYB is an external command included
  15. ; with MS DOS 5.0 to provide keyboard support for 14 languages.
  16. ; KEYB will jump immediately into the command processing in
  17. ; file KEYBCMD. All resident code is included before KEYBCMD
  18. ; in the linkage list.
  19. ;
  20. ;
  21. ; Procedures Contained in This File:
  22. ; ----------------------------------
  23. ;
  24. ;
  25. ; Include Files Required:
  26. ; -----------------------
  27. ; KEYBCMD.INC - External declarations for transient command
  28. ; processing routines
  29. ;
  30. ; External Procedure References:
  31. ; ------------------------------
  32. ; FROM FILE KEYCMD.ASM:
  33. ; KEYB_COMMAND - Main routine for transient command processing.
  34. ;
  35. ; Linkage Instructions:
  36. ; --------------------
  37. ; Link in .COM format. Resident code/data is in files KEYB thru
  38. ; KEYBCPSD.
  39. ;
  40. ; LINK KEYB+KEYBI9+KEYBI9C+KEYBI2F+KEYBCPSD+KEYBMSG+
  41. ; COMMSUBS+KEYBTBBL+KEYBCMD;
  42. ; EXE2BIN KEYB.EXE KEYB.COM
  43. ;
  44. ; Change History:
  45. ; ---------------
  46. ;
  47. ;
  48. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  49. CODE SEGMENT PUBLIC 'CODE' BYTE
  50. INCLUDE KEYBCMD.INC ; Bring in external declarations
  51. ; for transient command processing
  52. ASSUME CS:CODE,DS:CODE
  53. ORG 100H ; required for .COM
  54. START:
  55. JMP KEYB_COMMAND
  56. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  57. CODE ENDS
  58. END START
  59.