Stubs for dos mode reboot interrupt.
This commit is contained in:
parent
0ada41eb45
commit
e269f8ad80
|
@ -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");
|
||||
}
|
Loading…
Reference in New Issue