Source code of Windows XP (NT5)
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.

40 lines
493 B

  1. title "Terminate execution of an NT VDM"
  2. ;++
  3. ;
  4. ; Copyright (c) 1989 Microsoft Corporation
  5. ;
  6. ; Module Name:
  7. ;
  8. ; quit.asm
  9. ;
  10. ; Abstract:
  11. ;
  12. ; This module is a simple dos executable that will terminate a
  13. ; Vdm.
  14. ;
  15. ; Author:
  16. ;
  17. ; Dave Hastings (daveh) 25-Apr-1991
  18. ;
  19. ; Environment:
  20. ;
  21. ; V86 mode only!!
  22. ;
  23. ; Revision History:
  24. ;
  25. ;--
  26. .386
  27. .xlist
  28. include bop.inc
  29. .list
  30. code segment
  31. ASSUME CS:code
  32. quit proc near
  33. BOP BOP_UNSIMULATE
  34. quit endp
  35. code ends
  36. end