Sweden-Number/dlls/winedos/int19.c

21 lines
366 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(int);
1998-10-24 12:39:06 +02:00
/**********************************************************************
* DOSVM_Int19Handler
1998-10-24 12:39:06 +02:00
*
* Handler for int 19h (Reboot).
*/
void WINAPI DOSVM_Int19Handler( CONTEXT86 *context )
1998-10-24 12:39:06 +02:00
{
WARN("Attempted Reboot\n");
1998-10-24 12:39:06 +02:00
}