nvramtool: 64bit safe CBFS handling
[coreboot.git] / util / vgabios / int15.c
1 #include <stdio.h>
2 #include "test.h"
3
4 void x86emu_dump_xregs();
5
6 int int15_handler(void)
7 {
8         printf("\nint15 encountered.\n");
9         //x86emu_dump_xregs();
10         X86_EAX = 0;
11         return 1;
12 }