12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- #pragma once
- #include "../common/printk.h"
- #include "../common/glib.h"
- #include "../common/asm.h"
- void sys_vector_init();
- void divide_error();
- void debug();
- void nmi();
- void int3();
- void overflow();
- void bounds();
- void undefined_opcode();
- void dev_not_avaliable();
- void double_fault();
- void coprocessor_segment_overrun();
- void invalid_TSS();
- void segment_not_exists();
- void stack_segment_fault();
- void general_protection();
- void page_fault();
- void x87_FPU_error();
- void alignment_check();
- void machine_check();
- void SIMD_exception();
- void virtualization_exception();
|