aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/io/io.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/io/io.h')
-rw-r--r--src/kernel/io/io.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/kernel/io/io.h b/src/kernel/io/io.h
new file mode 100644
index 0000000..e00a5f0
--- /dev/null
+++ b/src/kernel/io/io.h
@@ -0,0 +1,12 @@
+#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);
+
+void reboot();
+
+#endif