ref: 0c284ab6ef15350e506a90dfe2caca0a8849a24d
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);
}