init: it boots

This commit is contained in:
Karina
2025-12-21 03:49:12 +04:00
commit bce8adb119
28 changed files with 4587 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
#pragma once
typedef unsigned _BitInt(32) bi_u32;
typedef unsigned _BitInt(64) bi_u64;
typedef struct {
bi_u32 *base;
bi_u64 base_size;
bi_u64 width;
bi_u64 height;
bi_u64 pitch;
} Bootinfo;