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

void halt()
{
	for (;;)
		asm volatile("hlt");
}

void panic(char *msg)
{
	print(msg);
	halt();
}