WIP: drivers and boot

This commit is contained in:
2025-11-16 20:41:20 +01:00
parent 6086b04054
commit b3392eb322
6 changed files with 147 additions and 63 deletions

View File

@ -4,7 +4,7 @@
#include "../i386/processor.h"
#include "../memory/VirtualMemoryManager.h"
#include "../syscalls.h"
#include "../klog.h"
IDT_entry idt_table[256];
IDT_ptr idt_ptr;
@ -91,7 +91,6 @@ void irs_handler (registers* regs) {
printf("EIP: 0x%x\n", regs->eip);
printf("EAX: 0x%x\n", regs->eax);
printf("EBP: 0x%x\n", regs->ebp);
while(true);
break;
case 9: