feat: panic, printf, logo and something i dont remember

This commit is contained in:
Karina
2025-12-21 16:59:33 +04:00
parent 1977e5b02b
commit 30b786c891
15 changed files with 2790 additions and 24 deletions
+13
View File
@@ -9,4 +9,17 @@ typedef struct {
bi_u64 width;
bi_u64 height;
bi_u64 pitch;
} BI_Framebuffer;
typedef struct {
void *map;
bi_u64 map_size;
bi_u64 descriptor_size;
bi_u32 map_key;
bi_u32 descriptor_version;
} BI_MemoryMap;
typedef struct {
BI_Framebuffer framebuffer;
BI_MemoryMap mem;
} Bootinfo;