raspberry3_bare/hello.c
2022-03-14 11:28:49 +01:00

7 lines
71 B
C

#include "uart.h"
int kernelmain(void) {
init_uart();
return 0;
}