This commit is contained in:
2021-09-14 18:30:00 +03:00
parent c90c6dc692
commit 7cb940e485
48 changed files with 2621 additions and 507 deletions

18
kernel/main.c Normal file
View File

@ -0,0 +1,18 @@
#include <system.h>
#include <conio.h>
#include "clock/pictimer.c"
#include "keyboard/keyus.c"
#include "kernel/prologue.c"
#include "kernel/epilogue.c"
#include "shell/shell.c"
int main()
{
system_init();
shell();
// do nothing
for(;;);
return 0;
}