version splash

This commit is contained in:
2026-01-04 11:00:30 +01:00
parent be1be41a64
commit d9dfd4c749
3 changed files with 28 additions and 20 deletions

View File

@@ -1,6 +1,10 @@
#ifndef KERNEL_H
#define KERNEL_H
#define PEPPEROS_VERSION_MAJOR "0"
#define PEPPEROS_VERSION_MINOR "0"
#define PEPPEROS_VERSION_PATCH "1"
enum ErrorCodes
{
ENOMEM,
@@ -20,4 +24,12 @@ enum ErrorCodes
void hcf();
#define assert(check) do { if(!(check)) hcf(); } while(0)
struct boot_context
{
struct limine_framebuffer* fb;
struct limine_memmap_response* mmap;
struct limine_hhdm_response* hhdm;
struct limine_kernel_address_response* kaddr;
};
#endif