initial commit
This commit is contained in:
12
kernel/main.c
Normal file
12
kernel/main.c
Normal 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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user