Hello world!

This commit is contained in:
2025-08-05 20:53:07 +02:00
commit f8399152d4
8 changed files with 220 additions and 0 deletions

15
kernel/types.h Normal file
View File

@ -0,0 +1,15 @@
#ifndef TYPES_H_
#define TYPES_H_
#define NULL ((void *)0)
typedef char int8;
typedef unsigned char uint8;
typedef short int16;
typedef unsigned short uint16;
typedef int int32;
typedef unsigned int uint32;
typedef long long int64;
typedef unsigned long long uint64;
#endif // TYPES_H_