2004-07-08 19:18:27 +02:00
|
|
|
#include <stdio.h>
|
2015-09-28 22:12:04 +02:00
|
|
|
#include <stdtypes.h>
|
|
|
|
#include "testbios.h"
|
2004-07-08 19:18:27 +02:00
|
|
|
|
|
|
|
int int15_handler(void)
|
|
|
|
{
|
|
|
|
printf("\nint15 encountered.\n");
|
2015-09-28 22:12:04 +02:00
|
|
|
x86emu_dump_xregs();
|
2004-07-08 19:18:27 +02:00
|
|
|
X86_EAX = 0;
|
|
|
|
return 1;
|
|
|
|
}
|