blob: 9cc4a2a891dbfbfd211bba918c0c558ca9cc4d63 [file] [log] [blame]
/*
* BIOS interrupt 19h handler
*/
#include <stdlib.h>
#include "miscemu.h"
#include "debug.h"
DEFAULT_DEBUG_CHANNEL(int19)
/**********************************************************************
* INT_Int19Handler
*
* Handler for int 19h (Reboot).
*/
void WINAPI INT_Int19Handler( CONTEXT *context )
{
WARN(int19, "Attempted Reboot\n");
}