blob: 239b6beef584c39e051dc3199dde01f0fafdc365 [file] [log] [blame]
Li-Ta Lo81521262004-07-08 17:18:27 +00001#include <stdio.h>
2#include "test.h"
3
4void x86emu_dump_xregs();
5
6int int15_handler(void)
7{
8 printf("\nint15 encountered.\n");
Li-Ta Lo8b0356c2005-01-11 03:18:39 +00009 //x86emu_dump_xregs();
Li-Ta Lo81521262004-07-08 17:18:27 +000010 X86_EAX = 0;
11 return 1;
12}