]> wirehaze git hosting - MS-DOS.git/blob - v4.0/src/CMD/GRAPHICS/GRAPHICS.ASM

wirehaze git hosting

MZ is back!
[MS-DOS.git] / v4.0 / src / CMD / GRAPHICS / GRAPHICS.ASM
1 PAGE ,132 ;AN000;
2 TITLE DOS GRAPHICS Command - Command Entry Point
3 ;AN000;
4 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;AN000;
5 ;; MS DOS GRAPHICS Command
6 ;; (C) Copyright 1988 Microsoft
7 ;; ;AN000;
8 ;; File Name: GRAPHICS.ASM ;AN000;
9 ;; ---------- ;AN000;
10 ;; ;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;
16 ;; ;AN000;
17 ;; Documentation Reference: ;AN000;
18 ;; ------------------------ ;AN000;
19 ;; OASIS High Level Design ;AN000;
20 ;; OASIS GRAPHICS I1 Overview ;AN000;
21 ;; ;AN000;
22 ;; Procedures Contained in This File: ;AN000;
23 ;; ---------------------------------- ;AN000;
24 ;; None ;AN000;
25 ;; ;AN000;
26 ;; Include Files Required: ;AN000;
27 ;; ----------------------- ;AN000;
28 ;; GRINST.EXT - Externals for GRINST.ASM ;AN000;
29 ;; ;AN000;
30 ;; ;AN000;
31 ;; External Procedure References: ;AN000;
32 ;; ------------------------------ ;AN000;
33 ;; FROM FILE GRINST.ASM: ;AN000;
34 ;; GRAPHICS_INSTALL - Main module for installation. ;AN000;
35 ;; ;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;
41 ;; ;AN000;
42 ;; Change History: ;AN000;
43 ;; --------------- ;AN000;
44 ;; ;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
52 ;; ;AN000;
53 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;AN000;
54 ;; ;AN000;
55 ;; ;AN000;
56 CODE SEGMENT PUBLIC 'CODE' ;; ;AN000;
57 ASSUME CS:CODE,DS:CODE ;; ;AN000;
58 ORG 100H ;; required for .COM ;AN000;
59 ;; ;AN000;
60 ;; ;AN000;
61 INCLUDE GRINST.EXT ;; Bring in external declarations ;AN000;
62 ;; for transient command processing ;AN000;
63 START: ;; ;AN000;
64 ;; ;AN000;
65 JMP GRAPHICS_INSTALL ;; ;AN000;
66 ;; ;AN000;
67 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;AN000;
68 ;;
69 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;AN000;
70 ;;
71 ; INCLUDE COPYRIGH.INC ;; included in message services ;AN003;
72 ;; ;AN000;
73 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;AN000;
74 ;AN000;
75 CODE ENDS ;AN000;
76 END START ;AN000;