rpi4-osdev/part3-helloworld/kernel.c

9 lines
103 B
C
Raw Normal View History

2020-07-12 09:08:51 +00:00
#include "io.h"
void main()
{
uart_init();
uart_writeText("Hello world!\n");
while (1);
}