ref: d0411bd170c8a72dcbc40c433fd7b9d7d10d12a3
dir: /libc/panic.c/
#include <u.h> #include <cons.h> #include <x86.h> /* abandon hope, all ye who enter here */ void panic(void) { cons_write(pccons, "PANIC!\n"); cons_write(serialcons, "PANIC!\n"); outb(KBC, 0xFE); }