#include "console.h" void panic(char *msg) { puts("KERNEL PANIC: "); puts(msg); __asm__("cli"); __asm__("hlt"); }