raspberry3_bare/hello.c

7 lines
71 B
C
Raw Normal View History

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