First, I set a GDT. One Null descriptor, a code and a Data segment.
Then, I set up the IDT:
Code: Select all
//Installs the IDT, called by main()
void IDT::install()
{
/* Sets the special IDT pointer up */
idtp.limit = (sizeof (idt_entry) * 256) - 1;
idtp.base = (unsigned int) &idt;
//Load IDT´s into the processor
idt_load();
}
Code: Select all
global idt_load ; we want to call this in C++
extern idtp
idt_load:
lidt [idtp]
ret
Code: Select all
void ISRs::install()
{
IDT::set_gate(0, (unsigned)isr0, 0x08, 0x8E);
IDT::set_gate(1, (unsigned)isr1, 0x08, 0x8E);
IDT::set_gate(2, (unsigned)isr2, 0x08, 0x8E);
IDT::set_gate(3, (unsigned)isr3, 0x08, 0x8E);
IDT::set_gate(4, (unsigned)isr4, 0x08, 0x8E);
IDT::set_gate(5, (unsigned)isr5, 0x08, 0x8E);
IDT::set_gate(6, (unsigned)isr6, 0x08, 0x8E);
IDT::set_gate(7, (unsigned)isr7, 0x08, 0x8E);
IDT::set_gate(8, (unsigned)isr8, 0x08, 0x8E);
IDT::set_gate(9, (unsigned)isr9, 0x08, 0x8E);
IDT::set_gate(10, (unsigned)isr10, 0x08, 0x8E);
IDT::set_gate(11, (unsigned)isr11, 0x08, 0x8E);
IDT::set_gate(12, (unsigned)isr12, 0x08, 0x8E);
IDT::set_gate(13, (unsigned)isr13, 0x08, 0x8E);
IDT::set_gate(14, (unsigned)isr14, 0x08, 0x8E);
IDT::set_gate(15, (unsigned)isr15, 0x08, 0x8E);
IDT::set_gate(16, (unsigned)isr16, 0x08, 0x8E);
IDT::set_gate(17, (unsigned)isr17, 0x08, 0x8E);
IDT::set_gate(18, (unsigned)isr18, 0x08, 0x8E);
IDT::set_gate(19, (unsigned)isr19, 0x08, 0x8E);
IDT::set_gate(20, (unsigned)isr20, 0x08, 0x8E);
IDT::set_gate(21, (unsigned)isr21, 0x08, 0x8E);
IDT::set_gate(22, (unsigned)isr22, 0x08, 0x8E);
IDT::set_gate(23, (unsigned)isr23, 0x08, 0x8E);
IDT::set_gate(24, (unsigned)isr24, 0x08, 0x8E);
IDT::set_gate(25, (unsigned)isr25, 0x08, 0x8E);
IDT::set_gate(26, (unsigned)isr26, 0x08, 0x8E);
IDT::set_gate(27, (unsigned)isr27, 0x08, 0x8E);
IDT::set_gate(28, (unsigned)isr28, 0x08, 0x8E);
IDT::set_gate(29, (unsigned)isr29, 0x08, 0x8E);
IDT::set_gate(30, (unsigned)isr30, 0x08, 0x8E);
IDT::set_gate(31, (unsigned)isr31, 0x08, 0x8E);
}