feature: start to implement keyboard handler and better isrs/irqs

This commit is contained in:
2024-10-09 17:54:29 +02:00
parent 0812a06350
commit 4fb51d4356
11 changed files with 451 additions and 141 deletions

View File

@ -1,5 +1,7 @@
#pragma once
#include <stdint.h>
// doc : https://wiki.osdev.org/Interrupt_Descriptor_Table#IDTR
struct idt_descriptor {
uint16_t size;
@ -17,4 +19,4 @@ struct idt_entry {
#define IDT_SIZE 256
void init_idt(void);
void init_idt(void);