raspberry3_bare/hello.c

8 lines
96 B
C

#include "uart.h"
int kernelmain(void) {
init_uart();
puts("Hello world\n");
return 0;
}