Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/kot-org/kot
Browse files Browse the repository at this point in the history
  • Loading branch information
konect-V committed Mar 9, 2024
2 parents f652353 + 197973a commit b4d712b
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions sources/core/kernel/source/arch/amd64/interrupts.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ char* exceptions_list[32] = {
"Invalid Opcode",
"Device Not Available",
"Double Fault",
"Coprocessor Segment Overrun",
"Coprocessor Segment Overrun", // Reserved
"Invalid TSS",
"Segment Not Present",
"Stack Fault",
Expand All @@ -34,8 +34,8 @@ char* exceptions_list[32] = {
"Alignment Check",
"Machine Check",
"SIMD Floating-Point Exception",
"Virtualization Exception",
"Control Protection Exception",
"Reserved",
"Control Protection Exception",
"Reserved",
"Reserved",
"Reserved",
Expand All @@ -45,6 +45,7 @@ char* exceptions_list[32] = {
"Hypervisor Injection Exception",
"VMM Communication Exception",
"Security Exception",
"Reserved",
};

struct stack_frame{
Expand Down Expand Up @@ -122,4 +123,4 @@ void interrupt_handler(cpu_context_t* ctx, arch_cpu_id_t cpu_id) {
}

local_apic_eoi(cpu_id);
}
}

0 comments on commit b4d712b

Please sign in to comment.