- Added debugging.
[wine/wine-kai.git] / msdos / int20.c
blobe98c4384fcbaf240c6baa7fe616c9f3f1568cf8a
1 /*
2 * DOS interrupt 20h handler (TERMINATE PROGRAM)
3 */
5 #include <stdlib.h>
6 #include "winbase.h"
7 #include "miscemu.h"
9 /**********************************************************************
10 * INT_Int20Handler (WPROCS.132)
12 * Handler for int 20h.
14 void WINAPI INT_Int20Handler( CONTEXT86 *context )
16 ExitThread( 0 );