blob: 44d9f6963d695d5a32deac7d249a474eef28eace [file] [log] [blame]
Carl van Schaike269f8a1998-10-24 10:39:06 +00001/*
2 * BIOS interrupt 19h handler
3 */
4
5#include <stdlib.h>
6#include "miscemu.h"
7#include "debug.h"
8
9
10/**********************************************************************
11 * INT_Int19Handler
12 *
13 * Handler for int 19h (Reboot).
14 */
15void WINAPI INT_Int19Handler( CONTEXT *context )
16{
17 WARN(int19, "Attempted Reboot\n");
18}