diff options
author | Marvin Borner | 2019-09-15 01:18:11 +0200 |
---|---|---|
committer | Marvin Borner | 2019-09-15 01:18:11 +0200 |
commit | 16913b711ad5e21392669cc65eb5eebdcc31e14c (patch) | |
tree | ff1c6004ae78af649ffac25ac41c8d1d24732c20 /src | |
parent | 41a2a86fd07134668263cf901706d6c0380173a1 (diff) |
Added idt gate setter
Diffstat (limited to 'src')
-rw-r--r-- | src/idt/idt.c | 12 | ||||
-rw-r--r-- | src/idt/idt.h | 2 |
2 files changed, 14 insertions, 0 deletions
diff --git a/src/idt/idt.c b/src/idt/idt.c index 3c0c246..c442044 100644 --- a/src/idt/idt.c +++ b/src/idt/idt.c @@ -21,6 +21,18 @@ struct idt_ptr idtp; // Defined in boot.asm extern void idt_load(); +void idt_set_gate(unsigned char num, unsigned long base, unsigned short sel, unsigned char flags) { + // Specify the interrupt routine's base address + idt[num].base_lo = (base & 0xFFFF); + idt[num].base_hi = (base >> 16) & 0xFFFF; + + // Set selector/segment of IDT entry + idt[num].sel = sel; + idt[num].always0 = 0; + idt[num].flags = flags; +} + + // Install IDT void idt_install() { // Set IDT pointer and limit diff --git a/src/idt/idt.h b/src/idt/idt.h index 6a68e86..5771ff0 100644 --- a/src/idt/idt.h +++ b/src/idt/idt.h @@ -3,4 +3,6 @@ void idt_install(); +void idt_set_gate(unsigned char num, unsigned long base, unsigned short sel, unsigned char flags); + #endif |