synth/uart/echo.c

11 lines
117 B
C
Raw Normal View History

2021-02-17 21:20:30 +00:00
#include "uart.h"
int main() {
while (1) {
char c = uart_read();
uart_write(c);
}
// never returns
}