Files
termOS/kernel/include/panic.h
T
2025-12-27 17:54:34 +04:00

14 lines
314 B
C

// SPDX-License-Identifier: GPL-3.0-or-later
// Copyright (c) 2025 0xKarinyash
#pragma once
#ifndef PANIC_H
#define PANIC_H
#include "types.h"
__attribute__((noreturn)) void panic_exception(Registers *regs);
__attribute__((noreturn)) void panic(const char* msg);
extern const char* exception_messages[];
#endif