summaryrefslogtreecommitdiff
path: root/stage3/halt.c
blob: b53a4f212687450fbbf8a11e837b536ee5aa4250 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "halt.h"
#include "font.h"
#include "pic.h"

void freeze()
{
	for (;;)
		wait_irq();
}

void panic(str msg)
{
	print(msg);
	freeze();
}