Working kernel

This commit is contained in:
Gitea 2020-12-01 21:00:20 -06:00
parent a4d05189ff
commit 094f93bcd6
1 changed files with 7 additions and 0 deletions

7
kernel/kernel.c Executable file
View File

@ -0,0 +1,7 @@
#include <kernel/tty.h>
#include <kernel/init.h>
void kern_main(void) {
term_init();
init();
}