1
0
mirror of https://gitlab.os-k.eu/os-k-team/os-k.git synced 2023-08-25 14:03:10 +02:00

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", "Stack Segment fault",
"General Protection Fault", "General Protection Fault",
"Page Fault", "Page Fault",
"Reserved", "Intel Reserved",
"x87 FPU Floating Point or Math Fault", "x87 FPU Floating Point or Math Fault",
"Alignment Check Fault", "Alignment Check Fault",
"Machine Check Abort", "Machine Check Abort",
"SIMD Floating Point Fault", "SIMD Floating Point Fault",
"Virtualization Exception Fault", "Virtualization Exception Fault",
"Reserved", "Intel Reserved",
"Reserved", "Intel Reserved",
"Reserved", "Intel Reserved",
"Reserved", "Intel Reserved",
"Reserved", "Intel Reserved",
"Reserved", "Intel Reserved",
"Reserved", "Intel Reserved",
"Reserved", "Intel Reserved",
"Reserved", "Intel Reserved",
"Reserved", "Intel Reserved",
"Reserved" "Intel Reserved"
}; };
struct IdtDescriptor_t { struct IdtDescriptor_t {

View File

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