Alexandre Julliard 617955db88 Changed CONTEXT into CONTEXT86 everywhere we really want an i386
context.
Added #ifdef __i386__ around accesses to 386 registers in the generic
CONTEXT structure.
1999-06-26 18:40:24 +00:00

21 lines
365 B
C

/*
* 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( CONTEXT86 *context )
{
WARN(int19, "Attempted Reboot\n");
}