mirror of
https://github.com/isometimes/rpi4-osdev
synced 2024-11-09 20:00:40 +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();
|
|
}
|