2 TITLE DOS GRAPHICS Command
- Command
Entry Point
4 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;AN000;
5 ;; MS DOS GRAPHICS Command
6 ;; (C) Copyright 1988 Microsoft
8 ;; File Name: GRAPHICS.ASM ;AN000;
11 ;; Description: ;AN000;
12 ;; ------------ ;AN000;
13 ;; This file contains the GRAPHICS command entry point. ;AN000;
14 ;; A jump is made to the GRAPHICS_INSTALL procedure ;AN000;
15 ;; in file GRINST.ASM to begin installation processing. ;AN000;
17 ;; Documentation Reference: ;AN000;
18 ;; ------------------------ ;AN000;
19 ;; OASIS High Level Design ;AN000;
20 ;; OASIS GRAPHICS I1 Overview ;AN000;
22 ;; Procedures Contained in This File: ;AN000;
23 ;; ---------------------------------- ;AN000;
26 ;; Include Files Required: ;AN000;
27 ;; ----------------------- ;AN000;
28 ;; GRINST.EXT - Externals for GRINST.ASM ;AN000;
31 ;; External Procedure References: ;AN000;
32 ;; ------------------------------ ;AN000;
33 ;; FROM FILE GRINST.ASM: ;AN000;
34 ;; GRAPHICS_INSTALL - Main module for installation. ;AN000;
36 ;; Linkage Instructions: ;AN000;
37 ;; -------------------- ;AN000;
38 ;; LINK GRAPHICS GRINT2FH GRPATTRN GRCTRL GRCPSD GRCOLPRT GRBWPRT ;AN000;
39 ;; GRINST GRPARSE grparms GRLOAD GRLOAD2 GRLOAD3; ;AN000;
40 ;; EXE2BIN GRAPHICS.EXE GRAPHICS.COM ;AN000;
42 ;; Change History: ;AN000;
43 ;; --------------- ;AN000;
45 ;; A000 - Denotes 4.00 level source. ;AN000;
46 ;; A001 - PTM1779 - invalid parm msg followed by garbage ;AN001;
47 ;; Module affected: GRPARMS.ASM ;AN001;
48 ;; A002 - PTM2666 - Release environment string before terminating. ;AN002;
49 ;; Module affected: GRINST.ASM ;AN002;
50 ;; A003 - PTM3915 - Change to include common copyright file.
51 ;; Module affected: GRAPHICS.ASM
53 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;AN000;
56 CODE SEGMENT PUBLIC 'CODE' ;; ;AN000;
57 ASSUME
CS:CODE,DS:CODE ;; ;AN000;
58 ORG 100H
;; required for .COM ;AN000;
61 INCLUDE GRINST
.EXT
;; Bring in external declarations ;AN000;
62 ;; for transient command processing ;AN000;
65 JMP GRAPHICS_INSTALL
;; ;AN000;
67 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;AN000;
69 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;AN000;
71 ; INCLUDE COPYRIGH.INC ;; included in message services ;AN003;
73 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;AN000;