aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.c
blob: aac605b4e4e4ee42f1529ce7085d8e8bee5f9a32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "common.h"

void main(void) {
    // Initialize uart.
    uart_init();

    uart_puts("Hello World!\n");

    // Echo input to standard output.
    while(1) {
        uart_putc(uart_getc());
    }
}