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

13 lines
264 B

#include "../lib/types.h"
#include "pic.h"
//#include "../drivers/vga.h"
#include "../lib/conv.h"
#define IDT_MAX_DESCS 256
#define EXC_COLOR 0x08
//__attribute__((noreturn))
void interupt_handler(uint);
void idt_set_desc(uint8, void*, uint8);
void idt_init();