mirror of https://github.com/tongzx/nt5src
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
40 lines
493 B
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
|