aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.c
blob: da354c18d64eedf4b082c8cdff3b305dff4e4d28 (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_send(uart_getc());
    }
}