Sweden-Number/msdos/int19.c

21 lines
364 B
C
Raw Normal View History

1998-10-24 12:39:06 +02:00
/*
* BIOS interrupt 19h handler
*/
#include <stdlib.h>
#include "miscemu.h"
#include "debugtools.h"
1998-10-24 12:39:06 +02:00
DEFAULT_DEBUG_CHANNEL(int19);
1998-10-24 12:39:06 +02:00
/**********************************************************************
* INT_Int19Handler
*
* Handler for int 19h (Reboot).
*/
void WINAPI INT_Int19Handler( CONTEXT86 *context )
1998-10-24 12:39:06 +02:00
{
WARN("Attempted Reboot\n");
1998-10-24 12:39:06 +02:00
}