mirror of
https://github.com/isometimes/rpi4-osdev
synced 2024-11-08 19:30:39 +00:00
9 lines
118 B
C
9 lines
118 B
C
#include "io.h"
|
|
|
|
void main()
|
|
{
|
|
uart_init();
|
|
uart_writeText("Hello world!\n");
|
|
|
|
while (1) uart_update();
|
|
}
|