Leaked source code of windows server 2003
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
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
|