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:
parent
1cacf1a4d0
commit
02ded3d5ae
@ -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 {
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user