MushOS  0.1
A UNIX-like OS prototype, written from scratch
Loading...
Searching...
No Matches
kernel.h
1#ifndef KERNEL_H
2#define KERNEL_H
3
4#include "../../lib/base/exceptions.h"
5#include "../../lib/base/string.h"
6
7
8#define PANIC(message, args...) {\
9 mod_string formatted = format(message, ## args);\
10 throw_verbose(0, "KERNEL PANIC", formatted)\
11 asm volatile ("jmp .");\
12}
13
14#endif // KERNEL_H