From e269f8ad80648fa829e310967e7c6bcef614c60f Mon Sep 17 00:00:00 2001 From: Carl van Schaik <carl@dreamcoat.che.uct.ac.za> Date: Sat, 24 Oct 1998 10:39:06 +0000 Subject: [PATCH] Stubs for dos mode reboot interrupt. --- msdos/int19.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 msdos/int19.c diff --git a/msdos/int19.c b/msdos/int19.c new file mode 100644 index 00000000000..44d9f6963d6 --- /dev/null +++ b/msdos/int19.c @@ -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"); +} -- GitLab