blob: 1ad5b42625735f07b5d1f10a0d26e4854fc26bd4 [file]
/*
* DOS interrupt 20h handler (TERMINATE PROGRAM)
*/
#include <stdlib.h>
#include "winbase.h"
#include "miscemu.h"
/* #define DEBUG_INT */
#include "debug.h"
#include "task.h"
/**********************************************************************
* INT_Int20Handler
*
* Handler for int 20h.
*/
void WINAPI INT_Int20Handler( CONTEXT86 *context )
{
ExitProcess( 0 );
}