Stubs for dos mode reboot interrupt.

oldstable
Carl van Schaik 1998-10-24 10:39:06 +00:00 committed by Alexandre Julliard
parent 0ada41eb45
commit e269f8ad80
1 changed files with 18 additions and 0 deletions

18
msdos/int19.c 100644
View File

@ -0,0 +1,18 @@
/*
* BIOS interrupt 19h handler
*/
#include <stdlib.h>
#include "miscemu.h"
#include "debug.h"
/**********************************************************************
* INT_Int19Handler
*
* Handler for int 19h (Reboot).
*/
void WINAPI INT_Int19Handler( CONTEXT *context )
{
WARN(int19, "Attempted Reboot\n");
}