aboutsummaryrefslogtreecommitdiff
path: root/src/io/io.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/io/io.h')
-rw-r--r--src/io/io.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/io/io.h b/src/io/io.h
new file mode 100644
index 0000000..8d3beda
--- /dev/null
+++ b/src/io/io.h
@@ -0,0 +1,10 @@
+#ifndef MELVIX_IO_H
+#define MELVIX_IO_H
+
+#include <stdint.h>
+
+unsigned char receive(unsigned short port);
+
+void send(unsigned short _port, unsigned char _data);
+
+#endif