stos: Print version in boot banner

Signed-off-by: Chloe M. <chloe@mensia.org>
This commit is contained in:
Chloe M.
2026-06-22 01:50:10 +00:00
parent aec7ddb4a2
commit accc3ae2a0
3 changed files with 45 additions and 1 deletions
+28
View File
@@ -0,0 +1,28 @@
/*
* Copyright (c) 2026, Chloe M.
* Provided under the BSD-3 clause.
*
* Description: Boot protocol abstraction layer
* Author: Chloe M.
*/
#ifndef _KE_BPAL_H_
#define _KE_BPAL_H_ 1
#include <stdef.h>
/*
* Boot protocol abstraction handle
*
* @KernelBase: Kernel load base
*/
typedef struct {
UPTR KernelBase;
} BPAL_HANDLE;
/*
* Initialize the boot protocol abstraction layer
*/
VOID KeBpalInit(VOID);
#endif /* !_KE_BPAL_H_ */
+15
View File
@@ -0,0 +1,15 @@
/*
* Copyright (c) 2026, Chloe M.
* Provided under the BSD-3 clause.
*
* Description: OS specific constants
* Author: Chloe M.
*/
#ifndef _KE_STOS_H_
#define _KE_STOS_H_ 1
/* Slut technology version */
#define ST_VERSION "v0.0.1 ~ pre-alpha"
#endif /* !_KE_STOS_H_ */