mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-02 20:18:28 +00:00
61fece0590
Stridvall.
20 lines
363 B
C
20 lines
363 B
C
/*
|
|
* BIOS interrupt 19h handler
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
#include "miscemu.h"
|
|
#include "debugtools.h"
|
|
|
|
DEFAULT_DEBUG_CHANNEL(int19)
|
|
|
|
|
|
/**********************************************************************
|
|
* INT_Int19Handler
|
|
*
|
|
* Handler for int 19h (Reboot).
|
|
*/
|
|
void WINAPI INT_Int19Handler( CONTEXT86 *context )
|
|
{
|
|
WARN("Attempted Reboot\n");
|
|
}
|