blob: a1235bbbf7412679b7d17856941dd0af2ea14177 [file] [log] [blame]
Li-Ta Lo81521262004-07-08 17:18:27 +00001#include <stdio.h>
Stefan Reinauer850e7d42015-09-28 13:12:04 -07002#include <stdtypes.h>
3#include "testbios.h"
Li-Ta Lo81521262004-07-08 17:18:27 +00004
5int int15_handler(void)
6{
7 printf("\nint15 encountered.\n");
Stefan Reinauer850e7d42015-09-28 13:12:04 -07008 x86emu_dump_xregs();
Li-Ta Lo81521262004-07-08 17:18:27 +00009 X86_EAX = 0;
10 return 1;
11}