os/cpu/i386/idt.h

11 lines
155 B
C
Raw Normal View History

2019-02-10 14:11:07 -06:00
#ifndef IDT_H
#define IDT_H
#include <stdint.h>
/* Functions implemented in idt.c */
2019-03-11 09:32:55 -05:00
void idt_set_gate(int n,uint32_t handler);
void load_idt();
2019-02-10 14:11:07 -06:00
#endif