better api

This commit is contained in:
nub31
2025-09-03 19:22:53 +02:00
parent b7bbccca73
commit bb923621f9
12 changed files with 112 additions and 109 deletions

7
src/arch/x86_64/panic.c Normal file
View File

@@ -0,0 +1,7 @@
#include "util.h"
void panic(const char* msg)
{
printf(msg);
halt();
}