repo.or.cz
/
wine
/
multimedia.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fixed bug in SwitchStackTo.
[wine/multimedia.git]
/
msdos
/
int20.c
blob
f6be7adf1ed74dc6ccc70f3a32db7ef3152b3da6
1
/*
2
* DOS interrupt 20h handler (TERMINATE PROGRAM)
3
*/
4
5
#include <stdlib.h>
6
#include
"miscemu.h"
7
/* #define DEBUG_INT */
8
#include
"debug.h"
9
#include
"task.h"
10
11
/**********************************************************************
12
* INT_Int20Handler
13
*
14
* Handler for int 20h.
15
*/
16
void
WINAPI
INT_Int20Handler
(
CONTEXT
*
context
)
17
{
18
ExitProcess
(
0
);
19
}