blob: 1f8d94743ffeda369ceb1ed1d6038ddb39b4d0c2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#include "uart.h"
void init_uart0(void) {}
int input_ch_0(void) { return getchar(); }
void output_ch_0(char data) { putchar(data); }
void flush_ch_0(void) { fflush(stdout); }
|