synth/uart/echo.c
2021-02-17 13:20:30 -08:00

11 lines
117 B
C

#include "uart.h"
int main() {
while (1) {
char c = uart_read();
uart_write(c);
}
// never returns
}