2004-07-08 19:18:27 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include "test.h"
|
|
|
|
|
|
|
|
void x86emu_dump_xregs();
|
|
|
|
|
|
|
|
int int15_handler(void)
|
|
|
|
{
|
|
|
|
printf("\nint15 encountered.\n");
|
2005-01-11 04:18:39 +01:00
|
|
|
//x86emu_dump_xregs();
|
2004-07-08 19:18:27 +02:00
|
|
|
X86_EAX = 0;
|
|
|
|
return 1;
|
|
|
|
}
|