summaryrefslogtreecommitdiff
path: root/v4.0/src/CMD/GRAPHICS/GRAPHICS.ASM
diff options
context:
space:
mode:
authorGravatar Mark Zbikowski2024-04-25 21:24:10 +0100
committerGravatar Microsoft Open Source2024-04-25 22:32:27 +0000
commit2d04cacc5322951f187bb17e017c12920ac8ebe2 (patch)
tree80ee017efa878dfd5344b44249e6a241f2a7f6e2 /v4.0/src/CMD/GRAPHICS/GRAPHICS.ASM
parentMerge pull request #430 from jpbaltazar/typoptbr (diff)
downloadms-dos-main.tar.gz
ms-dos-main.tar.xz
ms-dos-main.zip
MZ is back!HEADmain
Diffstat (limited to 'v4.0/src/CMD/GRAPHICS/GRAPHICS.ASM')
-rw-r--r--v4.0/src/CMD/GRAPHICS/GRAPHICS.ASM76
1 files changed, 76 insertions, 0 deletions
diff --git a/v4.0/src/CMD/GRAPHICS/GRAPHICS.ASM b/v4.0/src/CMD/GRAPHICS/GRAPHICS.ASM
new file mode 100644
index 0000000..8b401b9
--- /dev/null
+++ b/v4.0/src/CMD/GRAPHICS/GRAPHICS.ASM
@@ -0,0 +1,76 @@
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;
56CODE 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;
63START: ;; ;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;
75CODE ENDS ;AN000;
76 END START ;AN000;