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.

46 lines
1.7 KiB

  1. PAGE ,132
  2. TITLE DXENDPM.ASM -- Special End Module for Dos Extender
  3. ; Copyright (c) Microsoft Corporation 1988-1991. All Rights Reserved.
  4. ;****************************************************************
  5. ;* *
  6. ;* DXENDPM.ASM - Dos Extender End Module *
  7. ;* *
  8. ;****************************************************************
  9. ;* *
  10. ;* Module Description: *
  11. ;* *
  12. ;* This module contains the end symbol for the DOS Extender's *
  13. ;* protected mode code segment. *
  14. ;* *
  15. ;****************************************************************
  16. ;* Revision History: *
  17. ;* *
  18. ;* 08/02/89 jimmat Split out from dxend.asm *
  19. ;* 09/20/88 (GeneA): created *
  20. ;* *
  21. ;****************************************************************
  22. ;
  23. ; -------------------------------------------------------
  24. ; INCLUDE FILE DEFINITIONS
  25. ; -------------------------------------------------------
  26. include segdefs.inc
  27. ; -------------------------------------------------------
  28. ; CODE SEGMENT DEFINITIONS
  29. ; -------------------------------------------------------
  30. DXPMCODE segment
  31. assume cs:DXPMCODE
  32. public CodeEndPM
  33. CodeEndPM:
  34. DXPMCODE ends
  35. ;****************************************************************
  36. end