11 lines
201 B
C
11 lines
201 B
C
#include "interrupts.h"
|
|
#include "types.h"
|
|
|
|
void load_idt() {
|
|
asm("lidt [idt_ptr]");
|
|
return;
|
|
}
|
|
|
|
//void interrupt_handler(struct cpu_reg_state cpu, struct stack_state stack, u32 interrupt_code) {
|
|
//}
|