1998-10-24 12:39:06 +02:00
|
|
|
/*
|
|
|
|
* BIOS interrupt 19h handler
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include "miscemu.h"
|
1999-06-26 21:09:08 +02:00
|
|
|
#include "debugtools.h"
|
1998-10-24 12:39:06 +02:00
|
|
|
|
2001-12-04 20:54:44 +01:00
|
|
|
DEFAULT_DEBUG_CHANNEL(int);
|
1999-04-19 16:56:29 +02:00
|
|
|
|
1998-10-24 12:39:06 +02:00
|
|
|
|
|
|
|
/**********************************************************************
|
2001-12-04 20:54:44 +01:00
|
|
|
* DOSVM_Int19Handler
|
1998-10-24 12:39:06 +02:00
|
|
|
*
|
|
|
|
* Handler for int 19h (Reboot).
|
|
|
|
*/
|
2001-12-04 20:54:44 +01:00
|
|
|
void WINAPI DOSVM_Int19Handler( CONTEXT86 *context )
|
1998-10-24 12:39:06 +02:00
|
|
|
{
|
1999-06-26 21:09:08 +02:00
|
|
|
WARN("Attempted Reboot\n");
|
1998-10-24 12:39:06 +02:00
|
|
|
}
|