Files
osc2025/kernel/main.c
2025-04-08 06:59:49 +08:00

13 lines
146 B
C

#include <uart.h>
#include <shell.h>
void main()
{
uart_init();
int shell_cont = 1;
while (shell_cont) {
shell_cont = shell();
}
}