Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/famicom-dumper.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2016-04-18 03:08:29 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2016-04-18 03:11:13 +0300
commitedc9db1e25c9a62c40a98a032350a122cc17b222 (patch)
tree887a0eef4f80ae9fca45ccabb8110d1725553e70 /usart.h
First commit
Diffstat (limited to 'usart.h')
-rw-r--r--usart.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/usart.h b/usart.h
new file mode 100644
index 0000000..207e60f
--- /dev/null
+++ b/usart.h
@@ -0,0 +1,10 @@
+#ifndef _USART_H
+#define _USART_H
+
+void USART_init(void);
+void USART_TransmitByte( unsigned char data );
+void USART_TransmitText(char* data);
+void USART_Transmit(void* p, unsigned long int len);
+void USART_TransmitHex(unsigned char data);
+
+#endif