mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-02 13:16:12 +00:00
18 lines
333 B
C
18 lines
333 B
C
/*
|
|
* 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");
|
|
}
|