Pridana verze v0.1

This commit is contained in:
2026-07-12 05:44:42 +02:00
commit 1266a65b82
40 changed files with 6126 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
/*
* AsterOS Kernel
* Autor: Pavel Kalaš
* Rok: 2026
*
*/
/*
* Tento header deklaruje fatalni panic cestu jadra.
* Funkce panic je urcena pro situace, kdy nelze bezpecne pokracovat,
* proto vypise duvod chyby a prevede system do zastaveneho stavu.
*/
#ifndef ASTER_PANIC_H
#define ASTER_PANIC_H
void panic(const char *reason);
#endif