The unified diff between revisions [8760ae92..] and [1dfe3b7e..] is displayed below. It can also be downloaded as a raw diff.

This diff has been restricted to the following files: 'uart.h'

#
# old_revision [8760ae9232295422550b79f09e55122390704b3c]
# new_revision [1dfe3b7eee76f3c8aea3b33932857682ee17701c]
#
# add_file "uart.h"
#  content [2d08795e26e7e976bded494c773936c5f91d1b69]
#
============================================================
--- /dev/null	
+++ uart.h	2d08795e26e7e976bded494c773936c5f91d1b69
@@ -0,0 +1,11 @@
+#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 */