Add: IDT implementation without ISRs

This commit is contained in:
xamidev
2024-07-14 16:58:35 +02:00
parent 007018790a
commit da6cb6c86d
10 changed files with 76 additions and 1 deletions

8
idt.h Normal file
View File

@@ -0,0 +1,8 @@
#ifndef IDT_H
#define IDT_H
void idt_set_gate(unsigned char num, unsigned long base, unsigned short sel, unsigned char flags);
void idt_install();
#endif