summaryrefslogtreecommitdiffstats
path: root/private/mvdm/v86/util/quit.asm
diff options
context:
space:
mode:
Diffstat (limited to 'private/mvdm/v86/util/quit.asm')
-rw-r--r--private/mvdm/v86/util/quit.asm40
1 files changed, 40 insertions, 0 deletions
diff --git a/private/mvdm/v86/util/quit.asm b/private/mvdm/v86/util/quit.asm
new file mode 100644
index 000000000..664fd2880
--- /dev/null
+++ b/private/mvdm/v86/util/quit.asm
@@ -0,0 +1,40 @@
+ title "Terminate execution of an NT VDM"
+;++
+;
+; Copyright (c) 1989 Microsoft Corporation
+;
+; Module Name:
+;
+; quit.asm
+;
+; Abstract:
+;
+; This module is a simple dos executable that will terminate a
+; Vdm.
+;
+; Author:
+;
+; Dave Hastings (daveh) 25-Apr-1991
+;
+; Environment:
+;
+; V86 mode only!!
+;
+; Revision History:
+;
+;--
+.386
+
+
+.xlist
+include bop.inc
+.list
+
+code segment
+ ASSUME CS:code
+quit proc near
+ BOP BOP_UNSIMULATE
+quit endp
+
+code ends
+ end