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
+20
View File
@@ -0,0 +1,20 @@
/*
* AsterOS Kernel
* Autor: Pavel Kalaš
* Rok: 2026
*
*/
/*
* Tento soubor definuje rozhrani pro kernelovy diagnosticky vystup.
* Poskytuje jednoduche API pro vypis retezce i formatovany log,
* ktery slouzi pro ladeni bootu, preruseni i behu kernel sluzeb.
*/
#ifndef ASTER_PRINTK_H
#define ASTER_PRINTK_H
void aster_print(const char *text);
void printk(const char *fmt, ...);
#endif