kernel/inc/utils/panic.h

12 lines
244 B
C
Raw Normal View History

// This file is part of noxos and licensed under the MIT open source license
2023-02-05 14:29:26 +00:00
#ifndef NOX_PANIC_H
#define NOX_PANIC_H
#include "platform/cpu.h"
#include "utils/string.h"
void panic(cpu_state_T* state, string_t message);
#endif //NOX_PANIC_H