Sweden-Number/dlls/winedos/int19.c

21 lines
366 B
C

/*
* BIOS interrupt 19h handler
*/
#include <stdlib.h>
#include "miscemu.h"
#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL(int);
/**********************************************************************
* DOSVM_Int19Handler
*
* Handler for int 19h (Reboot).
*/
void WINAPI DOSVM_Int19Handler( CONTEXT86 *context )
{
WARN("Attempted Reboot\n");
}