#ifndef __UART_H #define __UART_H void init_uart(void); void putch(char c); void putstr(char *s); void putint(unsigned int n); void puthex(unsigned int n); char getch(void); #endif /* __UART_H */