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.

81 lines
3.3 KiB

  1. ;/*
  2. ; * Microsoft Confidential
  3. ; * Copyright (C) Microsoft Corporation 1988 - 1991
  4. ; * All Rights Reserved.
  5. ; */
  6. PAGE ,132 ;AN000;
  7. TITLE DOS GRAPHICS Command - Command Entry Point
  8. ;AN000;
  9. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;AN000;
  10. ;; MS DOS GRAPHICS Command
  11. ;;
  12. ;; ;AN000;
  13. ;; File Name: GRAPHICS.ASM ;AN000;
  14. ;; ---------- ;AN000;
  15. ;; ;AN000;
  16. ;; Description: ;AN000;
  17. ;; ------------ ;AN000;
  18. ;; This file contains the GRAPHICS command entry point. ;AN000;
  19. ;; A jump is made to the GRAPHICS_INSTALL procedure ;AN000;
  20. ;; in file GRINST.ASM to begin installation processing. ;AN000;
  21. ;; ;AN000;
  22. ;; Documentation Reference: ;AN000;
  23. ;; ------------------------ ;AN000;
  24. ;; OASIS High Level Design ;AN000;
  25. ;; OASIS GRAPHICS I1 Overview ;AN000;
  26. ;; ;AN000;
  27. ;; Procedures Contained in This File: ;AN000;
  28. ;; ---------------------------------- ;AN000;
  29. ;; None ;AN000;
  30. ;; ;AN000;
  31. ;; Include Files Required: ;AN000;
  32. ;; ----------------------- ;AN000;
  33. ;; GRINST.EXT - Externals for GRINST.ASM ;AN000;
  34. ;; ;AN000;
  35. ;; ;AN000;
  36. ;; External Procedure References: ;AN000;
  37. ;; ------------------------------ ;AN000;
  38. ;; FROM FILE GRINST.ASM: ;AN000;
  39. ;; GRAPHICS_INSTALL - Main module for installation. ;AN000;
  40. ;; ;AN000;
  41. ;; Linkage Instructions: ;AN000;
  42. ;; -------------------- ;AN000;
  43. ;; LINK GRAPHICS GRINT2FH GRPATTRN GRCTRL GRCPSD GRCOLPRT GRBWPRT ;AN000;
  44. ;; GRINST GRPARSE grparms GRLOAD GRLOAD2 GRLOAD3; ;AN000;
  45. ;; EXE2BIN GRAPHICS.EXE GRAPHICS.COM ;AN000;
  46. ;; ;AN000;
  47. ;; Change History: ;AN000;
  48. ;; --------------- ;AN000;
  49. ;; ;AN000;
  50. ;; A000 - Denotes 4.00 level source. ;AN000;
  51. ;; A001 - PTM1779 - invalid parm msg followed by garbage ;AN001;
  52. ;; Module affected: GRPARMS.ASM ;AN001;
  53. ;; A002 - PTM2666 - Release environment string before terminating. ;AN002;
  54. ;; Module affected: GRINST.ASM ;AN002;
  55. ;; A003 - PTM3915 - Change to include common copyright file.
  56. ;; Module affected: GRAPHICS.ASM
  57. ;; ;AN000;
  58. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;AN000;
  59. ;; ;AN000;
  60. ;; ;AN000;
  61. CODE SEGMENT PUBLIC 'CODE' ;; ;AN000;
  62. ASSUME CS:CODE,DS:CODE ;; ;AN000;
  63. ORG 100H ;; required for .COM ;AN000;
  64. ;; ;AN000;
  65. ;; ;AN000;
  66. INCLUDE GRINST.EXT ;; Bring in external declarations ;AN000;
  67. ;; for transient command processing ;AN000;
  68. START: ;; ;AN000;
  69. ;; ;AN000;
  70. JMP GRAPHICS_INSTALL ;; ;AN000;
  71. ;; ;AN000;
  72. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;AN000;
  73. ;;
  74. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;AN000;
  75. ;;
  76. ; INCLUDE COPYRIGH.INC ;; included in message services ;AN003;
  77. ;; ;AN000;
  78. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;AN000;
  79. ;AN000;
  80. CODE ENDS ;AN000;
  81. END START ;AN000;
  82.