interrupts

This commit is contained in:
nub31
2025-08-24 18:52:51 +02:00
parent 1402a227f1
commit 57ef424e00
8 changed files with 162 additions and 3 deletions

5
src/idt.h Normal file
View File

@@ -0,0 +1,5 @@
#include <stdint.h>
void idt_init(void);
void exception_handler(void);
void idt_set_descriptor(uint8_t vector, void* isr, uint8_t flags);