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

View File

@@ -1,7 +1,13 @@
#include "idt.h"
#include "vga.h"
void kernel_main(void)
{
vga_clear();
idt_init();
vga_print("Welcome to nub OS\n");
int x = 1 / 0;
}