initial commit

This commit is contained in:
2025-03-11 05:17:34 +08:00
commit e906741ee9
27 changed files with 924 additions and 0 deletions

12
kernel/main.c Normal file
View File

@@ -0,0 +1,12 @@
#include <uart.h>
#include <shell.h>
void main()
{
uart_init();
int shell_cont = 1;
while (shell_cont) {
shell_cont = shell();
}
}