Update files

This commit is contained in:
Alex
2022-10-08 04:33:53 +03:00
parent 6d5f7e9372
commit 8652d781ce
53 changed files with 7413 additions and 10 deletions

11
kernel.h Normal file
View File

@ -0,0 +1,11 @@
#ifndef __FENNIX_KERNEL_KERNEL_H__
#define __FENNIX_KERNEL_KERNEL_H__
#include <types.h>
#include <boot/binfo.h>
extern struct BootInfo *bInfo;
EXTERNC void kernel_entry(struct BootInfo *Info);
#endif // !__FENNIX_KERNEL_KERNEL_H__