summaryrefslogtreecommitdiffstats
path: root/private/mvdm/dpmi/dxendpm.asm
blob: 7a04b873abe1d62fd0cead785391aad6607cf474 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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