Idt in progress !

This commit is contained in:
Adrien Bourmault 2019-04-23 17:38:50 +02:00
parent 1cacf1a4d0
commit 02ded3d5ae
2 changed files with 13 additions and 13 deletions

View File

@ -117,23 +117,23 @@ static const char *IsrExceptions[32] = {
"Stack Segment fault",
"General Protection Fault",
"Page Fault",
"Reserved",
"Intel Reserved",
"x87 FPU Floating Point or Math Fault",
"Alignment Check Fault",
"Machine Check Abort",
"SIMD Floating Point Fault",
"Virtualization Exception Fault",
"Reserved",
"Reserved",
"Reserved",
"Reserved",
"Reserved",
"Reserved",
"Reserved",
"Reserved",
"Reserved",
"Reserved",
"Reserved"
"Intel Reserved",
"Intel Reserved",
"Intel Reserved",
"Intel Reserved",
"Intel Reserved",
"Intel Reserved",
"Intel Reserved",
"Intel Reserved",
"Intel Reserved",
"Intel Reserved",
"Intel Reserved"
};
struct IdtDescriptor_t {

View File

@ -135,7 +135,7 @@ void IdtHandler(ulong intNo)
if (irrecoverable) {
KeStartPanic("Irrecoverable exception 0x%x : %s\n", intNo, exceptionMsg);
} else {
bprintf(BStdOut, "Exception 0x%x : %s\n", intNo, exceptionMsg);
bprintf(BStdOut, "[ISR 0x%x] %s\n", intNo, exceptionMsg);
}
return;