summaryrefslogtreecommitdiffstats
path: root/private/mvdm/v86/util/quit.asm
blob: 664fd2880fa1e326dd7e79466c01c8e9cb1a2cdf (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
	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