8b0356c2c9
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1853 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
12 lines
177 B
C
12 lines
177 B
C
#include <stdio.h>
|
|
#include "test.h"
|
|
|
|
void x86emu_dump_xregs();
|
|
|
|
int int15_handler(void)
|
|
{
|
|
printf("\nint15 encountered.\n");
|
|
//x86emu_dump_xregs();
|
|
X86_EAX = 0;
|
|
return 1;
|
|
}
|