diff options
Diffstat (limited to 'src/loader/inc/pnc.h')
-rw-r--r-- | src/loader/inc/pnc.h | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/src/loader/inc/pnc.h b/src/loader/inc/pnc.h deleted file mode 100644 index 73819c9..0000000 --- a/src/loader/inc/pnc.h +++ /dev/null @@ -1,24 +0,0 @@ -// MIT License, Copyright (c) 2021 Marvin Borner - -#ifndef PNC_H -#define PNC_H - -#include <log.h> - -#define panic(reason) \ - { \ - log("%s:%d: %s: Panic: %s", __FILE__, __LINE__, __func__, (reason)); \ - while (1) \ - __asm__ volatile("cli\nhlt"); \ - } - -#define assert(exp) \ - { \ - if (!(exp)) \ - panic("Assertion '" #exp "' failed\n"); \ - } - -// This shouldn't return, therefore this declaration belongs here (kinda) -void jmp_kernel(void *kernel, int args, ...); - -#endif |