raspberry3_bare/hello.c

8 lines
96 B
C
Raw Normal View History

2022-03-14 07:46:32 +01:00
#include "uart.h"
int kernelmain(void) {
init_uart();
2022-03-14 20:28:46 +01:00
puts("Hello world\n");
2022-03-14 07:46:32 +01:00
return 0;
}