Initial commit

This commit is contained in:
2024-06-02 00:26:57 +02:00
commit 45f420a338
21 changed files with 889 additions and 0 deletions

10
kernel/lib.h Normal file
View File

@ -0,0 +1,10 @@
#pragma once
#define NULL (0)
typedef unsigned int uint32_t;
typedef int int32_t;
static_assert(sizeof(uint32_t) == 4);
void panic(const char*);