2023-03-10 10:32:50 +00:00
|
|
|
// 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
|