A poorly written OS for the x86 arch. (WIP)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
eOS/kernel/idt.h

12 lines
216 B

#include "../lib/types.h"
#define IDT_MAX_DESCS 256
__attribute__((noreturn))
void exception_handler();
__attribute__((noreturn))
void interupt_handler();
void idt_set_desc(uint8, void*, uint8);
void idt_init();