MyOS Kernel
idt.h
Go to the documentation of this file.
1 
5 #ifndef IDT_H
6 #define IDT_H
7 
8 
9 #include <stdint.h>
10 
16 void idt_set_gate(int n,uint32_t handler);
20 void load_idt();
21 
22 #endif
idt_set_gate
void idt_set_gate(int n, uint32_t handler)
Definition: idt.c:44
load_idt
void load_idt()
Definition: idt.c:52