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/interupt.c

51 lines
1.2 KiB

3 years ago
#include "interupt.h"
3 years ago
typedef struct {
3 years ago
uint16 offset_1; // offset 0 to 15 bits
uint16 selector; // code segment sel
3 years ago
uint8 reserved; // should be zero
3 years ago
uint8 type_attr; // type & attr stuff
uint16 offset_2; // offset 16 to 31
3 years ago
} __attribute__((packed)) idt_entry;
typedef struct {
uint16 limit;
uint base;
} __attribute__((packed)) idtr;
3 years ago
3 years ago
__attribute__((aligned(16)))
3 years ago
static idt_entry IDT[IDT_MAX_DESCS];
static idtr IDTR;
3 years ago
void exception_handler() {
__asm__ __volatile__("cli; hlt");
3 years ago
}
3 years ago
void interupt_handler() {
3 years ago
__asm__("pusha");
// handle stuff
__asm__("popa; leave; iret");
}
3 years ago
void idt_set_desc(uint8 idx, void* isr, uint8 flags) {
idt_entry* desc = &IDT[idx]; // get descriptor
desc->offset_1 = (uint) isr & 0xffff;
3 years ago
desc->selector = 0x08; // kernel code selector for the GDT (null is 0x0 - 0x4 => code is 0x05 to something...)
3 years ago
desc->reserved = 0;
desc->type_attr = flags;
desc->offset_2 = (uint) isr >> 16;
}
extern void* isr_stub_table[];
void idt_init() {
IDTR.base = (uintptr) &IDT[0]; // base offset
IDTR.limit = (uint16) sizeof(idt_entry) * IDT_MAX_DESCS - 1;
for (uint8 idx = 0; idx < 32; idx++)
idt_set_desc(idx, isr_stub_table[idx], 0x8e);
__asm__ __volatile__("lidt %0" : : "m"(IDTR));
__asm__ __volatile__("sti");
}