blob: 8ed6684d139dde9fa43b4a540c73e859d4885ef8 [file] [log] [blame]
/*
* DOS interrupt 20h handler (TERMINATE PROGRAM)
*/
#include <stdio.h>
#include <stdlib.h>
#include "miscemu.h"
/* #define DEBUG_INT */
#include "debug.h"
#include "task.h"
/**********************************************************************
* INT_Int20Handler
*
* Handler for int 20h.
*/
void WINAPI INT_Int20Handler( CONTEXT *context )
{
TASK_KillCurrentTask( 0 );
}