8 lines
96 B
C
8 lines
96 B
C
#include "uart.h"
|
|
|
|
int kernelmain(void) {
|
|
init_uart();
|
|
puts("Hello world\n");
|
|
return 0;
|
|
}
|