Sign in
cos
/
mirrors
/
cros
/
chromiumos
/
third_party
/
coreboot
/
7274ba360d51d8ca8278708225661d9291fd3c60
/
.
/
util
/
vgabios
/
int15.c
blob: 239b6beef584c39e051dc3199dde01f0fafdc365 [
file
] [
log
] [
blame
]
#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
;
}