mirror of
https://github.com/fail0verflow/switch-coreboot.git
synced 2025-05-04 01:39:18 -04:00
12 lines
175 B
C
12 lines
175 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;
|
|
}
|