Add kernel panic function

This commit is contained in:
Bananymous
2022-11-14 18:53:00 +02:00
parent b185ed4fd3
commit 9e933a5ec5
4 changed files with 31 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
#pragma once
namespace Kernel
{
__attribute__((__noreturn__))
void panic(const char* message);
}