summaryrefslogtreecommitdiffstats
path: root/private/mvdm/dpmi/dxendpm.asm
diff options
context:
space:
mode:
Diffstat (limited to 'private/mvdm/dpmi/dxendpm.asm')
-rw-r--r--private/mvdm/dpmi/dxendpm.asm46
1 files changed, 46 insertions, 0 deletions
diff --git a/private/mvdm/dpmi/dxendpm.asm b/private/mvdm/dpmi/dxendpm.asm
new file mode 100644
index 000000000..7a04b873a
--- /dev/null
+++ b/private/mvdm/dpmi/dxendpm.asm
@@ -0,0 +1,46 @@
+ PAGE ,132
+ TITLE DXENDPM.ASM -- Special End Module for Dos Extender
+
+; Copyright (c) Microsoft Corporation 1988-1991. All Rights Reserved.
+
+;****************************************************************
+;* *
+;* DXENDPM.ASM - Dos Extender End Module *
+;* *
+;****************************************************************
+;* *
+;* Module Description: *
+;* *
+;* This module contains the end symbol for the DOS Extender's *
+;* protected mode code segment. *
+;* *
+;****************************************************************
+;* Revision History: *
+;* *
+;* 08/02/89 jimmat Split out from dxend.asm *
+;* 09/20/88 (GeneA): created *
+;* *
+;****************************************************************
+;
+; -------------------------------------------------------
+; INCLUDE FILE DEFINITIONS
+; -------------------------------------------------------
+
+include segdefs.inc
+
+; -------------------------------------------------------
+; CODE SEGMENT DEFINITIONS
+; -------------------------------------------------------
+
+
+DXPMCODE segment
+ assume cs:DXPMCODE
+
+ public CodeEndPM
+CodeEndPM:
+
+DXPMCODE ends
+
+;****************************************************************
+
+ end