First commit: add folder structure, make process, kernel main function, base for framebuffer driver

This commit is contained in:
xamidev
2024-05-18 22:06:31 +02:00
commit 25405a7c11
21 changed files with 444 additions and 0 deletions

6
io.h Normal file
View File

@@ -0,0 +1,6 @@
#ifndef INCLUDE_IO_H
#define INCLUDE_IO_H
void outb(unsigned short port, unsigned char data);
#endif